]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#10046: small correction to atexit docs.
authorGeorg Brandl <georg@python.org>
Thu, 14 Oct 2010 06:43:22 +0000 (06:43 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 14 Oct 2010 06:43:22 +0000 (06:43 +0000)
Doc/library/atexit.rst

index db902187fb78c0efece3e1ba2ff60676111e9f4f..104c73027d2256c16f39139a4706438171e5113a 100644 (file)
@@ -12,8 +12,8 @@ functions.  Functions thus registered are automatically executed upon normal
 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)