• Home
  • Raw
  • Download

Lines Matching full:except

34         except exc as err:
38 except exc as err:
56 except EOFError:
83 except NameError: pass
95 except SyntaxError: pass
102 except TabError: pass
112 except TypeError: pass
119 except ZeroDivisionError: pass
123 except Exception as e: pass
134 except SyntaxError as e:
152 except:
187 except TypeError as err:
199 except RuntimeError as err:
222 except NameError:
359 except NameError:
365 except:
397 except:
418 except TypeError as e:
432 except:
459 except Exception as exc:
496 except ValueError:
508 # an "except" statement is only visible inside the except block.
511 except Exception as e:
517 # Make sure exception state is cleaned up as soon as the except
531 # Qualified "except" with "as"
536 except MyException as e:
542 # Qualified "except" without "as"
547 except MyException:
553 # Bare "except"
558 except:
564 # "except" with premature block leave
570 except:
576 # "except" block raising another exception
582 except:
584 except KeyError as e:
585 # We want to test that the except block above got rid of
602 except MyException:
608 except MyException:
639 except Exception as e:
649 except KeyError:
663 except TypeError:
679 except RuntimeError:
684 except StopIteration:
694 except ZeroDivisionError:
700 except ZeroDivisionError as e:
713 except ZeroDivisionError:
719 except TypeError:
729 except ZeroDivisionError as e:
742 except RuntimeError:
754 except RuntimeError:
772 except MyException:
788 except RuntimeError:
806 except StopIteration:
816 except StopIteration:
832 except:
892 except MyException as e:
894 except KeyError:
896 except:
904 except RecursionError:
920 except MemoryError as e:
986 except MemoryError as e:
1006 except RecursionError as e:
1065 except exc_type: