diff options
Diffstat (limited to 'Lib/atexit.py')
-rw-r--r-- | Lib/atexit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/atexit.py b/Lib/atexit.py index b5929fc..59d5cf3 100644 --- a/Lib/atexit.py +++ b/Lib/atexit.py @@ -17,7 +17,7 @@ def _run_exitfuncs(): while _exithandlers: func, targs, kargs = _exithandlers.pop() - apply(func, targs, kargs) + func(*targs, **kargs) def register(func, *targs, **kargs): """register a function to be executed upon normal program termination |