summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2002-03-23 20:46:35 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2002-03-23 20:46:35 (GMT)
commit0f2103fb16c3ed907c3388a2f862105b81c843d4 (patch)
treeb2d2266b86fcf79cf934adcbb59b52343334eb65 /Python
parentd03c342b9930f14302ee10c0f99468b37d7a7f91 (diff)
downloadcpython-0f2103fb16c3ed907c3388a2f862105b81c843d4.zip
cpython-0f2103fb16c3ed907c3388a2f862105b81c843d4.tar.gz
cpython-0f2103fb16c3ed907c3388a2f862105b81c843d4.tar.bz2
Fix wording of sys.exit docstring. Close SF bug 534113.
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c2
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).";