diff options
author | Miguel Brito <5544985+miguendes@users.noreply.github.com> | 2021-05-13 00:11:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 00:11:36 (GMT) |
commit | 8ea350ee9055435c4267834cdaf85f1a2d4a1ed1 (patch) | |
tree | 2e1eb768aa58c238c14248e05f0fbbc8c09a9b95 /Doc/library/exceptions.rst | |
parent | a0ccc404ca649c2a1635511a09df2454e47b4d66 (diff) | |
download | cpython-8ea350ee9055435c4267834cdaf85f1a2d4a1ed1.zip cpython-8ea350ee9055435c4267834cdaf85f1a2d4a1ed1.tar.gz cpython-8ea350ee9055435c4267834cdaf85f1a2d4a1ed1.tar.bz2 |
bpo-44030: Fix formatting error in exceptions docs (GH-25929)
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index c83daae..173c1c2 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -96,7 +96,7 @@ The following exceptions are used mostly as base classes for other exceptions. instance of ``OtherException`` while preserving the traceback. Once raised, the current frame is pushed onto the traceback of the ``OtherException``, as would have happened to the traceback of the - original ``SomeException`` had we allowed it to propagate to the caller. + original ``SomeException`` had we allowed it to propagate to the caller. :: try: ... |