diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2006-04-04 12:48:33 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2006-04-04 12:48:33 (GMT) |
commit | 1b6cab65319a4374e2f93c3b8b247c9642489d1e (patch) | |
tree | 7e4473a885e718b6beaf0cfc38efaf00477de435 /Lib/test/test_ast.py | |
parent | 36458ee501ae9588ca510c4e296726b404b6fb2e (diff) | |
download | cpython-1b6cab65319a4374e2f93c3b8b247c9642489d1e.zip cpython-1b6cab65319a4374e2f93c3b8b247c9642489d1e.tar.gz cpython-1b6cab65319a4374e2f93c3b8b247c9642489d1e.tar.bz2 |
Remove debugging prints.
Diffstat (limited to 'Lib/test/test_ast.py')
-rw-r--r-- | Lib/test/test_ast.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index ca52df5..c64ad28 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)) |