diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-04 05:44:36 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-04 05:44:36 +0000 |
commit | a7a3cfe792d21a3202e03583b03c9c9fd6dbfe56 (patch) | |
tree | ad490d130fe22e47bc7e6829fa54dfcc147f3699 /Lib/test/test_ast.py | |
parent | e8fb992f756cc8799a914abca24f92601e38b577 (diff) | |
download | cpython-git-a7a3cfe792d21a3202e03583b03c9c9fd6dbfe56.tar.gz |
Comment out the prints. These appear to be only for debugging purposes.
Jeremy, please fix this correctly after the alpha.
Diffstat (limited to 'Lib/test/test_ast.py')
-rw-r--r-- | Lib/test/test_ast.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py index 31933eac19..ca52df51af 100644 --- a/Lib/test/test_ast.py +++ b/Lib/test/test_ast.py @@ -150,8 +150,10 @@ def run_tests(): (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)) |