diff options
author | Björn Meier <bjoern@opentrash.org> | 2019-09-11 17:55:02 (GMT) |
---|---|---|
committer | Julien Palard <julien@palard.fr> | 2019-09-11 17:55:02 (GMT) |
commit | 9936371af298d465095ae70bc9c2943b4b16eac4 (patch) | |
tree | 32ce76a99a4db99afc6a9b5274f9512088563cd4 | |
parent | de606ea169435fe4dd40dc3e3b2b591e11396a14 (diff) | |
download | cpython-9936371af298d465095ae70bc9c2943b4b16eac4.zip cpython-9936371af298d465095ae70bc9c2943b4b16eac4.tar.gz cpython-9936371af298d465095ae70bc9c2943b4b16eac4.tar.bz2 |
bpo-36270: Doc: add link to traceback object reference (GH-13119)
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index a5528f7..ca43dc9 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -345,7 +345,7 @@ always available. ``(type, value, traceback)``. Their meaning is: *type* gets the type of the exception being handled (a subclass of :exc:`BaseException`); *value* gets the exception instance (an instance of the exception type); *traceback* gets - a traceback object (see the Reference Manual) which encapsulates the call + a :ref:`traceback object <traceback-objects>` which encapsulates the call stack at the point where the exception originally occurred. |