diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2023-05-04 10:04:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 10:04:41 (GMT) |
commit | 6ab463684b9d79880d98cd1f1406aa86af65985e (patch) | |
tree | a74045a23b9a8daa77bce351a3882093f2d5d6c9 /Doc/library/traceback.rst | |
parent | b0ce2db1184124575d5934d205344a9cf5debb79 (diff) | |
download | cpython-6ab463684b9d79880d98cd1f1406aa86af65985e.zip cpython-6ab463684b9d79880d98cd1f1406aa86af65985e.tar.gz cpython-6ab463684b9d79880d98cd1f1406aa86af65985e.tar.bz2 |
GH-97950: Use new-style index directive ('object') (#104158)
* Uncomment object removal in pairindextypes
* Use new-style index directive ('object') - C API
* Use new-style index directive ('object') - Library
* Use new-style index directive ('object') - Reference
* Use new-style index directive ('object') - Tutorial
Diffstat (limited to 'Doc/library/traceback.rst')
-rw-r--r-- | Doc/library/traceback.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index 561c852..5c0e261 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -14,7 +14,7 @@ interpreter when it prints a stack trace. This is useful when you want to print stack traces under program control, such as in a "wrapper" around the interpreter. -.. index:: object: traceback +.. index:: pair: object; traceback The module uses traceback objects --- these are objects of type :class:`types.TracebackType`, which are assigned to the ``__traceback__`` field of :class:`BaseException` instances. |