diff --git a/hy/lang/expression.py b/hy/lang/expression.py index 91fdd96..65eba36 100644 --- a/hy/lang/expression.py +++ b/hy/lang/expression.py @@ -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 diff --git a/hy/lang/hyobj.py b/hy/lang/hyobj.py index 9beb72c..a04d216 100644 --- a/hy/lang/hyobj.py +++ b/hy/lang/hyobj.py @@ -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]