diff options
author | Georg Brandl <georg@python.org> | 2010-10-14 06:43:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-14 06:43:22 (GMT) |
commit | 7c4cad51ba55cac30eac7e35a5ebbb06cfcab6e2 (patch) | |
tree | 23d728a39580c292d14b25845c1f5fcf2daf7f74 /Doc/library/atexit.rst | |
parent | 4eb6597b622bab586be2a9479eb530295e661ccd (diff) | |
download | cpython-7c4cad51ba55cac30eac7e35a5ebbb06cfcab6e2.zip cpython-7c4cad51ba55cac30eac7e35a5ebbb06cfcab6e2.tar.gz cpython-7c4cad51ba55cac30eac7e35a5ebbb06cfcab6e2.tar.bz2 |
#10046: small correction to atexit docs.
Diffstat (limited to 'Doc/library/atexit.rst')
-rw-r--r-- | Doc/library/atexit.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index db90218..104c730 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) |