]> granicus.if.org Git - python/commitdiff
Comment out the prints. These appear to be only for debugging purposes.
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 4 Apr 2006 05:44:36 +0000 (05:44 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 4 Apr 2006 05:44:36 +0000 (05:44 +0000)
Jeremy, please fix this correctly after the alpha.

Lib/test/test_ast.py

index 31933eac194747aa3c2635365590d6d08ccbf8f9..ca52df51af9948429f90e7c09478d37a690fee58 100644 (file)
@@ -150,8 +150,10 @@ def run_tests():
                                 (eval_tests, eval_results, "eval")):
         for i, o in itertools.izip(input, output):
             ast_tree = compile(i, "?", kind, 0x400)
-            print repr(to_tuple(ast_tree))
-            print repr(o)
+            # XXX(nnorwitz): these prints seem to be only for debugging.
+            #  If they are really desired, we must generate the output file.
+            # print repr(to_tuple(ast_tree))
+            # print repr(o)
             assert to_tuple(ast_tree) == o
             test_order(ast_tree, (0, 0))