From 0f2103fb16c3ed907c3388a2f862105b81c843d4 Mon Sep 17 00:00:00 2001 From: Neil Schemenauer Date: Sat, 23 Mar 2002 20:46:35 +0000 Subject: [PATCH] Fix wording of sys.exit docstring. Close SF bug 534113. --- Python/sysmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 3448e6a9d36..581a19baae0 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).";