diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-11 18:12:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-11 18:12:35 (GMT) |
commit | f79a022d762edc749d0fecdc50c567d2bb910c53 (patch) | |
tree | e1ea26dd12a9d5e65cf65932bdbb0b55e04f4e61 /Doc/library | |
parent | d6ac67f48f5079efc3fa4be3316a9578edb56e0d (diff) | |
download | cpython-f79a022d762edc749d0fecdc50c567d2bb910c53.zip cpython-f79a022d762edc749d0fecdc50c567d2bb910c53.tar.gz cpython-f79a022d762edc749d0fecdc50c567d2bb910c53.tar.bz2 |
bpo-36270: Doc: add link to traceback object reference (GH-13119)
(cherry picked from commit 9936371af298d465095ae70bc9c2943b4b16eac4)
Co-authored-by: Björn Meier <bjoern@opentrash.org>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index be1af37..5f8afa8 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. |