diff options
author | Michael W. Hudson <mwh@python.net> | 2002-03-25 12:33:56 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-03-25 12:33:56 (GMT) |
commit | 6ce28c36ad009a0d2d96d0b005ac1620a1afdc9a (patch) | |
tree | dd914d8764c2ed4f5b54b0017e573c30758ded69 /Python/sysmodule.c | |
parent | 004fab3f2f27660c59d3fe51b1a6714c0c697a2b (diff) | |
download | cpython-6ce28c36ad009a0d2d96d0b005ac1620a1afdc9a.zip cpython-6ce28c36ad009a0d2d96d0b005ac1620a1afdc9a.tar.gz cpython-6ce28c36ad009a0d2d96d0b005ac1620a1afdc9a.tar.bz2 |
backport nascheme's checkin of
revision 2.102 of sysmodule.c
Fix wording of sys.exit docstring. Close SF bug 534113.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 3448e6a..581a19b 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)."; |