cpython: 55fc092dad72 (original) (raw)

Mercurial > cpython

changeset 74948:55fc092dad72 3.2

Improve doc for atexit.register and unregister (#12297) [#12297]

Éric Araujo merwok@netwok.org
date Wed, 15 Feb 2012 17:07:49 +0100
parents 53df93a9c002
children f7163afecb97 77ac369fbbf1
files Doc/library/atexit.rst
diffstat 1 files changed, 9 insertions(+), 8 deletions(-)[+] [-] Doc/library/atexit.rst 17

line wrap: on

line diff

--- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -22,7 +22,8 @@ is detected, or when :func:os._exit is Register func as a function to be executed at termination. Any optional arguments that are to be passed to func must be passed as arguments to

.. function:: unregister(func)

.. seealso:: @@ -98,6 +101,4 @@ Usage as a :term:decorator:: def goodbye(): print("You are now leaving the Python sector.") -This obviously only works with functions that don't take arguments. - - +This only works with functions that can be called without arguments.