Commit 4750d539 authored by Georg Brandl's avatar Georg Brandl

#10046: small correction to atexit docs.

parent 20eb579d
...@@ -12,8 +12,8 @@ functions. Functions thus registered are automatically executed upon normal ...@@ -12,8 +12,8 @@ functions. Functions thus registered are automatically executed upon normal
interpreter termination. interpreter termination.
Note: the functions registered via this module are not called when the program 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 is killed by a signal not handled by Python, when a Python fatal internal error
:func:`os._exit` is called. is detected, or when :func:`os._exit` is called.
.. function:: register(func, *args, **kargs) .. function:: register(func, *args, **kargs)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment