From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 11 Sep 2019 18:12:35 +0000 (-0700) Subject: bpo-36270: Doc: add link to traceback object reference (GH-13119) X-Git-Tag: v3.8.0rc1~158 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f79a022d762edc749d0fecdc50c567d2bb910c53;p=python bpo-36270: Doc: add link to traceback object reference (GH-13119) (cherry picked from commit 9936371af298d465095ae70bc9c2943b4b16eac4) Co-authored-by: Björn Meier --- diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index be1af371d4..5f8afa8d6e 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 ` which encapsulates the call stack at the point where the exception originally occurred.