diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2021-10-20 16:54:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 16:54:31 (GMT) |
commit | dff0b713436e286bb1afdd7c6f3093c8e8db16dd (patch) | |
tree | 24aeb481bb94830fb24931713784a39f3cbca6bd /Doc | |
parent | 1dfac27dffbe771f9d88bd1726f7362ce0341437 (diff) | |
download | cpython-dff0b713436e286bb1afdd7c6f3093c8e8db16dd.zip cpython-dff0b713436e286bb1afdd7c6f3093c8e8db16dd.tar.gz cpython-dff0b713436e286bb1afdd7c6f3093c8e8db16dd.tar.bz2 |
bpo-45464: [doc] Explain that subclassing multiple exceptions is fragile (GH-29094)
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/exceptions.rst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index b665c60..8fa82a9 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -34,6 +34,10 @@ class or one of its subclasses, and not from :exc:`BaseException`. More information on defining exceptions is available in the Python Tutorial under :ref:`tut-userexceptions`. + +Exception context +----------------- + When raising (or re-raising) an exception in an :keyword:`except` or :keyword:`finally` clause :attr:`__context__` is automatically set to the last exception caught; if the @@ -67,6 +71,25 @@ exceptions so that the final line of the traceback always shows the last exception that was raised. +Inheriting from built-in exceptions +----------------------------------- + +User code can create subclasses that inherit from an exception type. +It's recommended to only subclass one exception type at a time to avoid +any possible conflicts between how the bases handle the ``args`` +attribute, as well as due to possible memory layout incompatibilities. + +.. impl-detail:: + + Most built-in exceptions are implemented in C for efficiency, see: + :source:`Objects/exceptions.c`. Some have custom memory layouts + which makes it impossible to create a subclass that inherits from + multiple exception types. The memory layout of a type is an implementation + detail and might change between Python versions, leading to new + conflicts in the future. Therefore, it's recommended to avoid + subclassing multiple exception types altogether. + + Base classes ------------ |