summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bool.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-24 16:11:18 (GMT)
committerGuido van Rossum <guido@python.org>2007-05-24 16:11:18 (GMT)
commit305b9246a75cf4b1eac29c9b5b41cb5541daa7ee (patch)
tree46f4be18910d1bb94816996b6a170ed589a2fc19 /Lib/test/test_bool.py
parent6f376c40317e693c5eea0356fbb90d7394f21ff0 (diff)
downloadcpython-305b9246a75cf4b1eac29c9b5b41cb5541daa7ee.zip
cpython-305b9246a75cf4b1eac29c9b5b41cb5541daa7ee.tar.gz
cpython-305b9246a75cf4b1eac29c9b5b41cb5541daa7ee.tar.bz2
Fix test_bool and test_bufio.
Diffstat (limited to 'Lib/test/test_bool.py')
-rw-r--r--Lib/test/test_bool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py
index 1fc9c05..8006370 100644
--- a/Lib/test/test_bool.py
+++ b/Lib/test/test_bool.py
@@ -26,10 +26,10 @@ class BoolTest(unittest.TestCase):
def test_print(self):
try:
- fo = open(test_support.TESTFN, "wb")
+ fo = open(test_support.TESTFN, "w")
print(False, True, file=fo)
fo.close()
- fo = open(test_support.TESTFN, "rb")
+ fo = open(test_support.TESTFN, "r")
self.assertEqual(fo.read(), 'False True\n')
finally:
fo.close()