]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
backport nascheme's checkin of
authorMichael W. Hudson <mwh@python.net>
Mon, 25 Mar 2002 12:33:56 +0000 (12:33 +0000)
committerMichael W. Hudson <mwh@python.net>
Mon, 25 Mar 2002 12:33:56 +0000 (12:33 +0000)
    revision 2.102 of sysmodule.c

Fix wording of sys.exit docstring.  Close SF bug 534113.

Python/sysmodule.c

index 3448e6a9d36c26ee197b4bde0251fca2fd677e07..581a19baae0512618d06a1d7f944d5e3cf5487af 100644 (file)
@@ -156,7 +156,7 @@ static char exit_doc[] =
 \n\
 Exit the interpreter by raising SystemExit(status).\n\
 If the status is omitted or None, it defaults to zero (i.e., success).\n\
-If the status numeric, it will be used as the system exit status.\n\
+If the status is numeric, it will be used as the system exit status.\n\
 If it is another kind of object, it will be printed and the system\n\
 exit status will be one (i.e., failure).";