bpo-44030: Fix formatting error in exceptions docs (GH-25929) (GH-26086)

(cherry picked from commit 8ea350ee90)

Co-authored-by: Miguel Brito <5544985+miguendes@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2021-05-12 17:27:08 -07:00 committed by GitHub
parent ba260acb22
commit 6275ea0282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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:
...