https://github.com/python/cpython/commit/32f3684b8f18d757945eee67a697cb4a95c697db commit: 32f3684b8f18d757945eee67a697cb4a95c697db branch: main author: Andrew Zipperer <[email protected]> committer: AA-Turner <[email protected]> date: 2024-01-12T22:42:51Z summary:
Tutorial: Clarify 'nonzero exit status' in the appendix (#112039) files: M Doc/tutorial/appendix.rst diff --git a/Doc/tutorial/appendix.rst b/Doc/tutorial/appendix.rst index 588591fcdb726f..4bea0d8a49ce20 100644 --- a/Doc/tutorial/appendix.rst +++ b/Doc/tutorial/appendix.rst @@ -20,7 +20,7 @@ In interactive mode, it then returns to the primary prompt; when input came from a file, it exits with a nonzero exit status after printing the stack trace. (Exceptions handled by an :keyword:`except` clause in a :keyword:`try` statement are not errors in this context.) Some errors are unconditionally fatal and -cause an exit with a nonzero exit; this applies to internal inconsistencies and +cause an exit with a nonzero exit status; this applies to internal inconsistencies and some cases of running out of memory. All error messages are written to the standard error stream; normal output from executed commands is written to standard output. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
