diff options
author | Furkan Onder <furkanonder@protonmail.com> | 2023-02-04 03:49:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-04 03:49:29 (GMT) |
commit | cef9de62b8bf5e2d11d5a074012dfa81dc4ea935 (patch) | |
tree | 0c24c605b28015fbdf6aae8c04eeba71985cbd82 /Doc/library/traceback.rst | |
parent | f11a3d1ebe0c78f8c159c63a37022b9b96f720dd (diff) | |
download | cpython-cef9de62b8bf5e2d11d5a074012dfa81dc4ea935.zip cpython-cef9de62b8bf5e2d11d5a074012dfa81dc4ea935.tar.gz cpython-cef9de62b8bf5e2d11d5a074012dfa81dc4ea935.tar.bz2 |
GH-56426: Add cross-reference to the documentation for faulthandler, traceback, and pdb. (#101157)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Diffstat (limited to 'Doc/library/traceback.rst')
-rw-r--r-- | Doc/library/traceback.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index f8c1eab..69818ba 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -20,8 +20,15 @@ The module uses traceback objects --- this is the object type that is stored in the :data:`sys.last_traceback` variable and returned as the third item from :func:`sys.exc_info`. -The module defines the following functions: +.. seealso:: + + Module :mod:`faulthandler` + Used to dump Python tracebacks explicitly, on a fault, after a timeout, or on a user signal. + Module :mod:`pdb` + Interactive source code debugger for Python programs. + +The module defines the following functions: .. function:: print_tb(tb, limit=None, file=None) |