[Python-checkins] r85452 - python/branches/py3k/Doc/library/atexit.rst

georg.brandl python-checkins at python.org
Thu Oct 14 08:43:22 CEST 2010


Author: georg.brandl
Date: Thu Oct 14 08:43:22 2010
New Revision: 85452

Log:
#10046: small correction to atexit docs.

Modified:
   python/branches/py3k/Doc/library/atexit.rst

Modified: python/branches/py3k/Doc/library/atexit.rst
==============================================================================
--- python/branches/py3k/Doc/library/atexit.rst	(original)
+++ python/branches/py3k/Doc/library/atexit.rst	Thu Oct 14 08:43:22 2010
@@ -12,8 +12,8 @@
 interpreter termination.
 
 Note: the functions registered via this module are not called when the program
-is killed by a signal, when a Python fatal internal error is detected, or when
-:func:`os._exit` is called.
+is killed by a signal not handled by Python, when a Python fatal internal error
+is detected, or when :func:`os._exit` is called.
 
 
 .. function:: register(func, *args, **kargs)


More information about the Python-checkins mailing list