[Python-checkins] python/dist/src/Doc/lib libsys.tex,1.73,1.74

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Wed Aug 18 04:50:02 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2701/doc/lib

Modified Files:
	libsys.tex 
Log Message:
Deprecate sys.exitfunc in favor of the atexit module.
Per Guido, sys.exitfunc will be kept around for backwards compatability
but atexit will become the one preferred way to do it.



Index: libsys.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsys.tex,v
retrieving revision 1.73
retrieving revision 1.74
diff -C2 -d -r1.73 -r1.74
*** libsys.tex	5 Aug 2004 12:13:46 -0000	1.73
--- libsys.tex	18 Aug 2004 02:50:00 -0000	1.74
***************
*** 196,199 ****
--- 196,200 ----
    killed by a signal, when a Python fatal internal error is detected,
    or when \code{os._exit()} is called.}
+   \deprecated{2.4}{Use \refmodule{atexit} instead.}
  \end{datadesc}
  



More information about the Python-checkins mailing list