bpo-34682: Wording and grammatical changes to the doc(https://docs.python.org/3) (GH-13120)

https://bugs.python.org/issue34682
This commit is contained in:
divyag9 2019-05-13 08:05:20 -05:00 committed by Miss Islington (bot)
parent 4f098b35f5
commit 778a910758
3 changed files with 13 additions and 13 deletions

View file

@ -243,7 +243,7 @@ re-entering the offending piece of code from the top).
When an exception is not handled at all, the interpreter terminates execution of
the program, or returns to its interactive main loop. In either case, it prints
a stack backtrace, except when the exception is :exc:`SystemExit`.
a stack traceback, except when the exception is :exc:`SystemExit`.
Exceptions are identified by class instances. The :keyword:`except` clause is
selected depending on the class of the instance: it must reference the class of