]> granicus.if.org Git - python/commitdiff
bpo-36270: Doc: add link to traceback object reference (GH-13119)
authorBjörn Meier <bjoern@opentrash.org>
Wed, 11 Sep 2019 17:55:02 +0000 (19:55 +0200)
committerJulien Palard <julien@palard.fr>
Wed, 11 Sep 2019 17:55:02 +0000 (19:55 +0200)
Doc/library/sys.rst

index a5528f72e4b751468d00e21a2108fc210fa03bfd..ca43dc994cb74e250d5428b4731bb183ced69ae1 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.