]> granicus.if.org Git - python/commitdiff
bpo-36270: Doc: add link to traceback object reference (GH-13119)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 11 Sep 2019 18:12:35 +0000 (11:12 -0700)
committerGitHub <noreply@github.com>
Wed, 11 Sep 2019 18:12:35 +0000 (11:12 -0700)
(cherry picked from commit 9936371af298d465095ae70bc9c2943b4b16eac4)

Co-authored-by: Björn Meier <bjoern@opentrash.org>
Doc/library/sys.rst

index be1af371d428a560bd48c1b233b34c490bd8cabe..5f8afa8d6ed4967f1b67027424040690b8273b43 100644 (file)
@@ -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.