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

Miss Islington (bot) webhook-mailer at python.org
Wed Sep 11 14:12:39 EDT 2019


https://github.com/python/cpython/commit/f79a022d762edc749d0fecdc50c567d2bb910c53
commit: f79a022d762edc749d0fecdc50c567d2bb910c53
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-09-11T11:12:35-07:00
summary:

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

(cherry picked from commit 9936371af298d465095ae70bc9c2943b4b16eac4)

Co-authored-by: Björn Meier <bjoern at opentrash.org>

files:
M Doc/library/sys.rst

diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index be1af371d428..5f8afa8d6ed4 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