Fixed atexit routine

This commit is contained in:
Veit Heller
2014-06-16 20:41:55 +02:00
parent b62b9c91f8
commit aa06c900c0

View File

@@ -53,11 +53,12 @@ def to_be_exec(name):
del fragment[:]
for i in name.split():
fragment.append(str((len(i)-1)))
#_()
def _():
global code
global fragment
if not code and not fragment:
return
code.extend(fragment)
eval(''.join([chr(to_i(c, 6)) for c in chunks(''.join(code), 3)]))
code, fragment = [], []