# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ allow programmer to define multiple exit functions to be executedupon normal program termination. Two public functions, register and unregister, are defined. """ __doc__ = """allow programmer to define multiple exit functions to be executedupon normal program termination. Two public functions, register and unregister, are defined. """ __file__ = '/home/shared/src/ide/build-files/build-temp/runtimes-release/__os__/linux-x64/runtime-python3.3/lib/python3.3/lib-dynload/atexit.cpython-33m.so' __loader__ = None __name__ = 'atexit' __package__ = '' def _clear(): """ _clear() -> None Clear the list of previously registered exit functions. """ return None def _run_exitfuncs(): """ _run_exitfuncs() -> None Run all registered exit functions. """ return None def register(func, arg0, arg1): """ register(func, *args, **kwargs) -> func Register a function to be executed upon normal program termination func - function to be called at exit args - optional arguments to pass to func kwargs - optional keyword arguments to pass to func func is returned to facilitate usage as a decorator. """ return None def unregister(func): """ unregister(func) -> None Unregister a exit function which was previously registered using atexit.register func - function to be unregistered """ return None