last thing

This commit is contained in:
Paul Tagliamonte 2012-12-18 13:05:02 -05:00
parent a1af08819d
commit c02900412c
2 changed files with 0 additions and 2 deletions

View File

@ -35,7 +35,6 @@ class HYExpression(list, HYObject):
for child in self.get_children():
c = child.copy()
things.append(c())
print c, things
ret = self.lookup(fn)(*things, **kwargs)
return ret

View File

@ -19,7 +19,6 @@ class HYObject(object):
callee = None
if fn in self.local_namespace:
callee = self.local_namespace[fn]
print "%s = %s (ls %s)" % (fn, callee, id(self.local_namespace))
elif callee is None and fn in self.namespace:
callee = self.namespace[fn]