From 163101962085b636cca43b93f1957bcaecee2f42 Mon Sep 17 00:00:00 2001 From: Daniel Haag <121057143+denialhaag@users.noreply.github.com> Date: Thu, 12 Dec 2024 22:43:44 +0100 Subject: [PATCH] Fix typo in traceback docs (GH-127884) (cherry picked from commit 0cbc19d59e409854f2b9bdda75e1af2b6cd89ac2) Co-authored-by: Daniel Haag <121057143+denialhaag@users.noreply.github.com> --- Doc/library/traceback.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst index 8f94fc448f2482..301cf225a51d37 100644 --- a/Doc/library/traceback.rst +++ b/Doc/library/traceback.rst @@ -270,7 +270,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.