commit | d8c19672a77b11b0ea0be163e08485771bb69550 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Feb 09 21:54:58 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Feb 09 21:54:58 2007 +0000 |
tree | 00789a8dbd6ee86c3239ec55aeb888391db105e1 | |
parent | 88fc6646d1b97cb3ba6188808e7c016884d44a73 [diff] [blame] |
Some more tests pass now. (Also test_compiler.py with -u all.)
diff --git a/Lib/test/test_deque.py b/Lib/test/test_deque.py index 9bb1472..2809904 100644 --- a/Lib/test/test_deque.py +++ b/Lib/test/test_deque.py
@@ -245,7 +245,7 @@ d.append(d) try: fo = open(test_support.TESTFN, "wb") - print(d, end=' ', file=fo) + fo.write(str(d)) fo.close() fo = open(test_support.TESTFN, "rb") self.assertEqual(fo.read(), repr(d))