summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-26 11:01:29 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-26 11:01:29 (GMT)
commit0e1e04301badf92e1204bbeed3cb31a98eeed7f9 (patch)
tree759dcd1587308469c5fa1b4b0e9d510391db56c6 /Python/sysmodule.c
parent8d26a56f3eb2f7b77b9c59b731f8fee3299bbc6c (diff)
parent4af4d273bd2c18e8e3d56dc43a877ce04a5a1e13 (diff)
downloadcpython-0e1e04301badf92e1204bbeed3cb31a98eeed7f9.zip
cpython-0e1e04301badf92e1204bbeed3cb31a98eeed7f9.tar.gz
cpython-0e1e04301badf92e1204bbeed3cb31a98eeed7f9.tar.bz2
#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 72004f8a..2d7e01b 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)."
);