• Home
  • Raw
  • Download

Lines Matching full:except

40             except exc as err:
44 except exc as err:
62 except EOFError:
89 except NameError: pass
101 except SyntaxError: pass
108 except TabError: pass
118 except TypeError: pass
125 except ZeroDivisionError: pass
129 except Exception as e: pass
141 except SyntaxError as e:
150 except:
160 except exception as e:
276 except TypeError as err:
288 except RuntimeError as err:
311 except NameError:
448 except NameError:
454 except:
486 except:
507 except TypeError as e:
521 except:
548 except Exception as exc:
585 except ValueError:
597 # an "except" statement is only visible inside the except block.
600 except Exception as e:
606 # Make sure exception state is cleaned up as soon as the except
620 # Qualified "except" with "as"
625 except MyException as e:
631 # Qualified "except" without "as"
636 except MyException:
642 # Bare "except"
647 except:
653 # "except" with premature block leave
659 except:
665 # "except" block raising another exception
671 except:
673 except KeyError as e:
674 # We want to test that the except block above got rid of
691 except MyException:
697 except MyException:
728 except Exception as e:
738 except KeyError:
752 except TypeError:
768 except RuntimeError:
773 except StopIteration:
783 except ZeroDivisionError:
789 except ZeroDivisionError as e:
802 except ZeroDivisionError:
808 except TypeError:
818 except ZeroDivisionError as e:
831 except RuntimeError:
843 except RuntimeError:
861 except MyException:
877 except RuntimeError:
895 except StopIteration:
905 except StopIteration:
921 except:
981 except MyException as e:
983 except KeyError:
985 except:
993 except RecursionError:
1021 except RecursionError:
1109 except MemoryError as e:
1175 except MemoryError as e:
1195 except RecursionError as e:
1230 except exc_type:
1271 except MainError:
1274 except SubError:
1288 except ValueError:
1297 except IndexError:
1312 except:
1324 except BaseException as e:
1346 except MemoryError as exc:
1351 except Exception:
1357 except MemoryError as exc: