Fixed atexit routine
This commit is contained in:
@@ -53,11 +53,12 @@ def to_be_exec(name):
|
|||||||
del fragment[:]
|
del fragment[:]
|
||||||
for i in name.split():
|
for i in name.split():
|
||||||
fragment.append(str((len(i)-1)))
|
fragment.append(str((len(i)-1)))
|
||||||
#_()
|
|
||||||
|
|
||||||
def _():
|
def _():
|
||||||
global code
|
global code
|
||||||
global fragment
|
global fragment
|
||||||
|
if not code and not fragment:
|
||||||
|
return
|
||||||
code.extend(fragment)
|
code.extend(fragment)
|
||||||
eval(''.join([chr(to_i(c, 6)) for c in chunks(''.join(code), 3)]))
|
eval(''.join([chr(to_i(c, 6)) for c in chunks(''.join(code), 3)]))
|
||||||
code, fragment = [], []
|
code, fragment = [], []
|
||||||
|
Reference in New Issue
Block a user