[Python-checkins] r43630 - python/trunk/Lib/test/test_ast.py

jeremy.hylton python-checkins at python.org
Tue Apr 4 14:48:34 CEST 2006


Author: jeremy.hylton
Date: Tue Apr  4 14:48:33 2006
New Revision: 43630

Modified:
   python/trunk/Lib/test/test_ast.py
Log:
Remove debugging prints.

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 14:48:33 2006
@@ -150,10 +150,6 @@
                                 (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))
 


More information about the Python-checkins mailing list