https://github.com/python/cpython/commit/9081ea4135809a6cc11edbebca1e6d94e43d6f93 commit: 9081ea4135809a6cc11edbebca1e6d94e43d6f93 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: AlexWaygood <[email protected]> date: 2024-12-12T21:54:23Z summary:
[3.12] Fix typo in traceback docs (GH-127884) (#127891) Co-authored-by: Daniel Haag <[email protected]> files: M Doc/library/traceback.rst diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index 07960e4b1042d4..0a2b9c5cfb10c4 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -263,7 +263,7 @@ Module-Level Functions :class:`!TracebackException` objects are created from actual exceptions to capture data for later printing. They offer a more lightweight method of storing this information by avoiding holding references to -:ref:`traceback<traceback-objects>` and :ref:`frame<frame-objects>` objects +:ref:`traceback<traceback-objects>` and :ref:`frame<frame-objects>` objects. In addition, they expose more options to configure the output compared to the module-level functions described above. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
