[Python-checkins] bpo-36270: Doc: add link to traceback object reference (GH-13119)

Julien Palard webhook-mailer at python.org
Wed Sep 11 13:55:05 EDT 2019


https://github.com/python/cpython/commit/9936371af298d465095ae70bc9c2943b4b16eac4
commit: 9936371af298d465095ae70bc9c2943b4b16eac4
branch: master
author: Björn Meier <bjoern at opentrash.org>
committer: Julien Palard <julien at palard.fr>
date: 2019-09-11T19:55:02+02:00
summary:

bpo-36270: Doc: add link to traceback object reference (GH-13119)

files:
M Doc/library/sys.rst

diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index a5528f72e4b7..ca43dc994cb7 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.
 
 



More information about the Python-checkins mailing list