From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:54:23 +0000 (+0100) Subject: [3.12] Fix typo in traceback docs (GH-127884) (#127891) X-Git-Tag: v3.12.9~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9081ea4135809a6cc11edbebca1e6d94e43d6f93;p=thirdparty%2FPython%2Fcpython.git [3.12] Fix typo in traceback docs (GH-127884) (#127891) Co-authored-by: Daniel Haag <121057143+denialhaag@users.noreply.github.com> --- diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index 07960e4b1042..0a2b9c5cfb10 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` and :ref:`frame` objects +:ref:`traceback` and :ref:`frame` objects. In addition, they expose more options to configure the output compared to the module-level functions described above.