summaryrefslogtreecommitdiff
path: root/Doc/library/atexit.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-14 06:43:22 +0000
committerGeorg Brandl <georg@python.org>2010-10-14 06:43:22 +0000
commit4750d53940fc329a3b5a5c2049e9a20ee90f7087 (patch)
tree8e4b7794a42030362bc995a440e8ff94c54bc5bb /Doc/library/atexit.rst
parent20eb579dcb9c780aca82474b1bffab41a728fda8 (diff)
downloadcpython-4750d53940fc329a3b5a5c2049e9a20ee90f7087.tar.gz
#10046: small correction to atexit docs.
Diffstat (limited to 'Doc/library/atexit.rst')
-rw-r--r--Doc/library/atexit.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst
index db902187fb..104c73027d 100644
--- a/Doc/library/atexit.rst
+++ b/Doc/library/atexit.rst
@@ -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)