adding in voodoo
This commit is contained in:
parent
c88ab1f787
commit
e98f3135c5
@ -27,10 +27,12 @@ def _add_native_methods(mod):
|
|||||||
|
|
||||||
|
|
||||||
def _eval(*args):
|
def _eval(*args):
|
||||||
|
ret = []
|
||||||
for node in _lex(*args):
|
for node in _lex(*args):
|
||||||
for tree in node:
|
for tree in node:
|
||||||
tree.set_namespace(globals())
|
tree.set_namespace(globals())
|
||||||
tree()
|
ret.append(tree())
|
||||||
|
return ret
|
||||||
|
|
||||||
|
|
||||||
def _plus(*args):
|
def _plus(*args):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user