mirror of https://github.com/python/cpython
Comment out the prints. These appear to be only for debugging purposes.
Jeremy, please fix this correctly after the alpha.
This commit is contained in:
parent
e8fb992f75
commit
a7a3cfe792
|
@ -150,8 +150,10 @@ def run_tests():
|
||||||
(eval_tests, eval_results, "eval")):
|
(eval_tests, eval_results, "eval")):
|
||||||
for i, o in itertools.izip(input, output):
|
for i, o in itertools.izip(input, output):
|
||||||
ast_tree = compile(i, "?", kind, 0x400)
|
ast_tree = compile(i, "?", kind, 0x400)
|
||||||
print repr(to_tuple(ast_tree))
|
# XXX(nnorwitz): these prints seem to be only for debugging.
|
||||||
print repr(o)
|
# 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
|
assert to_tuple(ast_tree) == o
|
||||||
test_order(ast_tree, (0, 0))
|
test_order(ast_tree, (0, 0))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue