From: Georg Brandl Date: Thu, 14 Oct 2010 06:43:22 +0000 (+0000) Subject: #10046: small correction to atexit docs. X-Git-Tag: v3.2a4~614 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c4cad51ba55cac30eac7e35a5ebbb06cfcab6e2;p=thirdparty%2FPython%2Fcpython.git #10046: small correction to atexit docs. --- diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index db902187fb78..104c73027d22 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)