From 9936371af298d465095ae70bc9c2943b4b16eac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Meier?= Date: Wed, 11 Sep 2019 19:55:02 +0200 Subject: bpo-36270: Doc: add link to traceback object reference (GH-13119) --- Doc/library/sys.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index a5528f7..ca43dc9 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 ` which encapsulates the call stack at the point where the exception originally occurred. -- cgit v0.12