From: Michael W. Hudson Date: Mon, 25 Mar 2002 12:33:56 +0000 (+0000) Subject: backport nascheme's checkin of X-Git-Tag: v2.2.1c2~33 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ce28c36ad009a0d2d96d0b005ac1620a1afdc9a;p=thirdparty%2FPython%2Fcpython.git backport nascheme's checkin of revision 2.102 of sysmodule.c Fix wording of sys.exit docstring. Close SF bug 534113. --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 3448e6a9d36c..581a19baae05 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -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).";