last thing
This commit is contained in:
parent
a1af08819d
commit
c02900412c
@ -35,7 +35,6 @@ class HYExpression(list, HYObject):
|
|||||||
for child in self.get_children():
|
for child in self.get_children():
|
||||||
c = child.copy()
|
c = child.copy()
|
||||||
things.append(c())
|
things.append(c())
|
||||||
print c, things
|
|
||||||
|
|
||||||
ret = self.lookup(fn)(*things, **kwargs)
|
ret = self.lookup(fn)(*things, **kwargs)
|
||||||
return ret
|
return ret
|
||||||
|
@ -19,7 +19,6 @@ class HYObject(object):
|
|||||||
callee = None
|
callee = None
|
||||||
if fn in self.local_namespace:
|
if fn in self.local_namespace:
|
||||||
callee = self.local_namespace[fn]
|
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:
|
elif callee is None and fn in self.namespace:
|
||||||
callee = self.namespace[fn]
|
callee = self.namespace[fn]
|
||||||
|
Loading…
Reference in New Issue
Block a user