summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_iter.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-06 17:14:04 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-06 17:14:04 (GMT)
commit8ee524343445f7ac1c60df812deff17a92757c06 (patch)
treefc97584832519aed4994015ac2d0c3f1e1555d58 /Lib/test/test_iter.py
parent97c5fccd773ad509f8fcf6be3708d90c4402772b (diff)
downloadcpython-8ee524343445f7ac1c60df812deff17a92757c06.zip
cpython-8ee524343445f7ac1c60df812deff17a92757c06.tar.gz
cpython-8ee524343445f7ac1c60df812deff17a92757c06.tar.bz2
Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.
Diffstat (limited to 'Lib/test/test_iter.py')
-rw-r--r--Lib/test/test_iter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_iter.py b/Lib/test/test_iter.py
index 509ec01..62a8d02 100644
--- a/Lib/test/test_iter.py
+++ b/Lib/test/test_iter.py
@@ -269,7 +269,7 @@ class TestCase(unittest.TestCase):
try:
self.assertEqual(list(f), ["0\n", "1\n", "2\n", "3\n", "4\n"])
f.seek(0, 0)
- self.assertEqual(list(f.xreadlines()),
+ self.assertEqual(list(f),
["0\n", "1\n", "2\n", "3\n", "4\n"])
finally:
f.close()
@@ -302,7 +302,7 @@ class TestCase(unittest.TestCase):
try:
self.assertEqual(tuple(f), ("0\n", "1\n", "2\n", "3\n", "4\n"))
f.seek(0, 0)
- self.assertEqual(tuple(f.xreadlines()),
+ self.assertEqual(tuple(f),
("0\n", "1\n", "2\n", "3\n", "4\n"))
finally:
f.close()