Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.stsci.edu/spst/UnixTransition/doc/atexit.html
Дата изменения: Thu Nov 5 13:46:15 2015
Дата индексирования: Sun Apr 10 20:08:29 2016
Кодировка:

Поисковые слова: http www.badastronomy.com phpbb index.php
Python: module atexit
 
 
atexit
index
/usr/local/Python-2.5/lib/python2.5/atexit.py
Module Docs

atexit.py - allow programmer to define multiple exit functions to be executed
upon normal program termination.
 
One public function, register, is defined.

 
Modules
       
sys

 
Functions
       
register(func, *targs, **kargs)
register a function to be executed upon normal program termination
 
func - function to be called at exit
targs - optional arguments to pass to func
kargs - optional keyword arguments to pass to func

 
Data
        __all__ = ['register']