]> granicus.if.org Git - python/commitdiff
Remove debugging prints.
authorJeremy Hylton <jeremy@alum.mit.edu>
Tue, 4 Apr 2006 12:48:33 +0000 (12:48 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Tue, 4 Apr 2006 12:48:33 +0000 (12:48 +0000)
Lib/test/test_ast.py

index ca52df51af9948429f90e7c09478d37a690fee58..c64ad2856fe8d56a8df04ee7b7528ac703b6cb0f 100644 (file)
@@ -150,10 +150,6 @@ def run_tests():
                                 (eval_tests, eval_results, "eval")):
         for i, o in itertools.izip(input, output):
             ast_tree = compile(i, "?", kind, 0x400)
-            # 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))