[Python-checkins] r43616 - python/trunk/Lib/test/test_ast.py (original) (raw)

neal.norwitz python-checkins at python.org
Tue Apr 4 07:44:36 CEST 2006


Author: neal.norwitz Date: Tue Apr 4 07:44:36 2006 New Revision: 43616

Modified: python/trunk/Lib/test/test_ast.py Log: Comment out the prints. These appear to be only for debugging purposes. Jeremy, please fix this correctly after the alpha.

Modified: python/trunk/Lib/test/test_ast.py

--- python/trunk/Lib/test/test_ast.py (original) +++ python/trunk/Lib/test/test_ast.py Tue Apr 4 07:44:36 2006 @@ -150,8 +150,10 @@ (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))


More information about the Python-checkins mailing list