소스 검색

Removed two debug messages in negate_group.

Sander Mathijs van Veen 14 년 전
부모
커밋
c3511de685
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  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)