diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 18:42:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 18:42:21 (GMT) |
commit | 1bdd6fd7c7b4c0cc2f614e3467c755ddffdf34c7 (patch) | |
tree | 889abf361feed3e38d531f63115d1158214d91ac /Doc/library/atexit.rst | |
parent | 39e352cb46fdd6b7ca55bdd4cb7f16a88c75842b (diff) | |
download | cpython-1bdd6fd7c7b4c0cc2f614e3467c755ddffdf34c7.zip cpython-1bdd6fd7c7b4c0cc2f614e3467c755ddffdf34c7.tar.gz cpython-1bdd6fd7c7b4c0cc2f614e3467c755ddffdf34c7.tar.bz2 |
atexit.py doesn't exist
Diffstat (limited to 'Doc/library/atexit.rst')
-rw-r--r-- | Doc/library/atexit.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index 1ce45c4..cc1051b 100644 --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -11,11 +11,6 @@ The :mod:`atexit` module defines functions to register and unregister cleanup functions. Functions thus registered are automatically executed upon normal interpreter termination. -.. seealso:: - - Latest version of the :source:`atexit Python source code - <Lib/atexit.py>` - Note: the functions registered via this module are not called when the program is killed by a signal not handled by Python, when a Python fatal internal error is detected, or when :func:`os._exit` is called. @@ -103,3 +98,4 @@ Usage as a :term:`decorator`:: This obviously only works with functions that don't take arguments. + |