adding in voodoo

This commit is contained in:
Paul Tagliamonte 2012-12-18 22:38:41 -05:00
parent c88ab1f787
commit e98f3135c5

View File

@ -27,10 +27,12 @@ def _add_native_methods(mod):
def _eval(*args):
ret = []
for node in _lex(*args):
for tree in node:
tree.set_namespace(globals())
tree()
ret.append(tree())
return ret
def _plus(*args):