-
Notifications
You must be signed in to change notification settings - Fork 1
/
Exit.py
26 lines (19 loc) · 824 Bytes
/
Exit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import atexit
class Exit:
############################################################################
def __init__(self):
self.functions = []
############################################################################
def register(self, function):
if function is None:
return
self.functions.append(function)
atexit.register(function)
############################################################################
def exit(self):
for function in self.functions:
function()
################################################################################
################################################################################
################################################################################
exit = Exit()