From: Jeremy Hylton Date: Tue, 4 Apr 2006 12:48:33 +0000 (+0000) Subject: Remove debugging prints. X-Git-Tag: v2.5a1~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b6cab65319a4374e2f93c3b8b247c9642489d1e;p=python Remove debugging prints. --- diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index ca52df51af..c64ad2856f 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -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))