Lines Matching full:except
35 except exc as err:
39 except exc as err:
57 except EOFError:
84 except NameError: pass
96 except SyntaxError: pass
103 except TabError: pass
113 except TypeError: pass
120 except ZeroDivisionError: pass
124 except Exception as e: pass
135 except SyntaxError as e:
153 except:
163 except exception as e:
216 except TypeError as err:
228 except RuntimeError as err:
251 except NameError:
388 except NameError:
394 except:
426 except:
447 except TypeError as e:
461 except:
488 except Exception as exc:
525 except ValueError:
537 # an "except" statement is only visible inside the except block.
540 except Exception as e:
546 # Make sure exception state is cleaned up as soon as the except
560 # Qualified "except" with "as"
565 except MyException as e:
571 # Qualified "except" without "as"
576 except MyException:
582 # Bare "except"
587 except:
593 # "except" with premature block leave
599 except:
605 # "except" block raising another exception
611 except:
613 except KeyError as e:
614 # We want to test that the except block above got rid of
631 except MyException:
637 except MyException:
668 except Exception as e:
678 except KeyError:
692 except TypeError:
708 except RuntimeError:
713 except StopIteration:
723 except ZeroDivisionError:
729 except ZeroDivisionError as e:
742 except ZeroDivisionError:
748 except TypeError:
758 except ZeroDivisionError as e:
771 except RuntimeError:
783 except RuntimeError:
801 except MyException:
817 except RuntimeError:
835 except StopIteration:
845 except StopIteration:
861 except:
921 except MyException as e:
923 except KeyError:
925 except:
933 except RecursionError:
961 except RecursionError:
1048 except MemoryError as e:
1114 except MemoryError as e:
1134 except RecursionError as e:
1186 except exc_type:
1227 except MainError:
1230 except SubError:
1244 except ValueError:
1253 except IndexError:
1268 except: