Removed two debug messages in negate_group.

parent f91e66f5
...@@ -63,13 +63,10 @@ def negate_group(root, args): ...@@ -63,13 +63,10 @@ def negate_group(root, args):
""" """
node, scope = args node, scope = args
print 'negate_group:', node, map(str, scope)
# Negate each group # Negate each group
for i, n in enumerate(scope): for i, n in enumerate(scope):
scope[i] = -n scope[i] = -n
print nary_node('+', scope)
return nary_node('+', scope) return nary_node('+', scope)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment