Lines Matching full:except
92 ... except ValueError:
99 :keyword:`except` keywords) is executed.
101 * If no exception occurs, the *except clause* is skipped and execution of the
106 :keyword:`except` keyword, the *except clause* is executed, and then execution
107 continues after the try/except block.
109 * If an exception occurs which does not match the exception named in the *except
114 A :keyword:`try` statement may have more than one *except clause*, to specify
117 not in other handlers of the same :keyword:`!try` statement. An *except clause*
120 ... except (RuntimeError, TypeError, NameError):
123 A class in an :keyword:`except` clause is compatible with an exception if it is
125 *except clause* listing a derived class is not compatible with a base class).
140 except D:
142 except C:
144 except B:
147 Note that if the *except clauses* were reversed (with ``except B`` first), it
148 would have printed B, B, B --- the first matching *except clause* is triggered.
161 except OSError as err:
163 except ValueError:
165 except BaseException as err:
169 Alternatively the last except clause may omit the exception name(s), however the exception
172 The :keyword:`try` ... :keyword:`except` statement has an optional *else
173 clause*, which, when present, must follow all *except clauses*. It is useful
180 except OSError:
189 :keyword:`!except` statement.
195 The *except clause* may specify a variable after the exception name. The
204 ... except Exception as inst:
231 ... except ZeroDivisionError as err:
263 ... except NameError:
291 ... except ConnectionError as exc:
306 :keyword:`except` or :keyword:`finally` section. This can be
311 ... except OSError:
368 clause, the exception may be handled by an :keyword:`except`
369 clause. If the exception is not handled by an :keyword:`!except`
373 * An exception could occur during execution of an :keyword:`!except`
409 ... except ZeroDivisionError:
431 :keyword:`except` clause and therefore re-raised after the :keyword:`!finally`