]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Tutorial: Clarify 'nonzero exit status' in the appendix (#112039)
authorAndrew Zipperer <47086307+zipperer@users.noreply.github.com>
Fri, 12 Jan 2024 22:42:51 +0000 (14:42 -0800)
committerGitHub <noreply@github.com>
Fri, 12 Jan 2024 22:42:51 +0000 (22:42 +0000)
Doc/tutorial/appendix.rst

index 588591fcdb726f72de84036eab8e3616ce346e03..4bea0d8a49ce209ccee206e0da63ee046c2bcdb5 100644 (file)
@@ -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.