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

(cherry picked from commit 9936371af2)

Co-authored-by: Björn Meier <bjoern@opentrash.org>
This commit is contained in:
Miss Islington (bot) 2019-09-11 11:12:35 -07:00 committed by GitHub
parent d6ac67f48f
commit f79a022d76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.