atexit module¶
binaryninja.atexit.register (func, *targs, …) |
register a function to be executed upon normal program termination |
atexit.py - allow programmer to define multiple exit functions to be executed upon normal program termination.
One public function, register, is defined.
-
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
func is returned to facilitate usage as a decorator.