diff options
author | divyag9 <divyam9@gmail.com> | 2019-05-13 13:05:20 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-13 13:05:20 (GMT) |
commit | 778a9107586e29421af3a08209cf0b557c1fe5bc (patch) | |
tree | d2981dadaec03eb60330270eed7133efbbbaf9a2 /Doc/reference/executionmodel.rst | |
parent | 4f098b35f58e911639f8e9adc393d5cf5c792e7f (diff) | |
download | cpython-778a9107586e29421af3a08209cf0b557c1fe5bc.zip cpython-778a9107586e29421af3a08209cf0b557c1fe5bc.tar.gz cpython-778a9107586e29421af3a08209cf0b557c1fe5bc.tar.bz2 |
bpo-34682: Wording and grammatical changes to the doc(https://docs.python.org/3) (GH-13120)
https://bugs.python.org/issue34682
Diffstat (limited to 'Doc/reference/executionmodel.rst')
-rw-r--r-- | Doc/reference/executionmodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/executionmodel.rst b/Doc/reference/executionmodel.rst index ba7130d..49cb86b 100644 --- a/Doc/reference/executionmodel.rst +++ b/Doc/reference/executionmodel.rst @@ -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 |