[Python-checkins] CVS: python/dist/src/Python sysmodule.c,2.101,2.102

Neil Schemenauer nascheme@users.sourceforge.net
Sat, 23 Mar 2002 12:46:37 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv5721

Modified Files:
	sysmodule.c 
Log Message:
Fix wording of sys.exit docstring.  Close SF bug 534113.


Index: sysmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/sysmodule.c,v
retrieving revision 2.101
retrieving revision 2.102
diff -C2 -d -r2.101 -r2.102
*** sysmodule.c	3 Mar 2002 15:11:17 -0000	2.101
--- sysmodule.c	23 Mar 2002 20:46:35 -0000	2.102
***************
*** 157,161 ****
  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 it is another kind of object, it will be printed and the system\n\
  exit status will be one (i.e., failure).";
--- 157,161 ----
  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 it is another kind of object, it will be printed and the system\n\
  exit status will be one (i.e., failure).";