Explorar o código

Removed two debug messages in negate_group.

Sander Mathijs van Veen %!s(int64=14) %!d(string=hai) anos
pai
achega
c3511de685
Modificáronse 1 ficheiros con 0 adicións e 3 borrados
  1. 0 3
      src/rules/negation.py

+ 0 - 3
src/rules/negation.py

@@ -63,13 +63,10 @@ def negate_group(root, args):
     """
     node, scope = args
 
-    print 'negate_group:', node, map(str, scope)
-
     # Negate each group
     for i, n in enumerate(scope):
         scope[i] = -n
 
-    print nary_node('+', scope)
     return nary_node('+', scope)