mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
#10046: small correction to atexit docs.
This commit is contained in:
parent
4eb6597b62
commit
7c4cad51ba
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue