summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-26 14:01:29 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-26 14:01:29 +0300
commit0e1e04301badf92e1204bbeed3cb31a98eeed7f9 (patch)
tree759dcd1587308469c5fa1b4b0e9d510391db56c6 /Python/sysmodule.c
parent8d26a56f3eb2f7b77b9c59b731f8fee3299bbc6c (diff)
parent4af4d273bd2c18e8e3d56dc43a877ce04a5a1e13 (diff)
downloadcpython-git-0e1e04301badf92e1204bbeed3cb31a98eeed7f9.tar.gz
#18839: merge with 3.3.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 72004f8a14..2d7e01bd7f 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -240,7 +240,7 @@ PyDoc_STRVAR(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 is numeric, it will be used as the system exit status.\n\
+If the status is an integer, 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)."
);