summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_iter.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-05-03 23:58:47 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-05-03 23:58:47 (GMT)
commit8bc10b0c579f740bbdf77a1db90d5de733fcf20e (patch)
treea99a40ea36546105a7062b1d047f31086b113bf8 /Lib/test/test_iter.py
parent4e9afdca392668bc7e07c79d8af0f95ef497fba4 (diff)
downloadcpython-8bc10b0c579f740bbdf77a1db90d5de733fcf20e.zip
cpython-8bc10b0c579f740bbdf77a1db90d5de733fcf20e.tar.gz
cpython-8bc10b0c579f740bbdf77a1db90d5de733fcf20e.tar.bz2
Purge redundant cut&paste line.
Diffstat (limited to 'Lib/test/test_iter.py')
-rw-r--r--Lib/test/test_iter.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_iter.py b/Lib/test/test_iter.py
index c87f5ec..66f40c1 100644
--- a/Lib/test/test_iter.py
+++ b/Lib/test/test_iter.py
@@ -367,7 +367,7 @@ class TestCase(unittest.TestCase):
self.assertEqual(map(None, d,
SequenceClass(5),
iter(d.iterkeys())),
- expected)
+ expected)
f = open(TESTFN, "w")
try:
@@ -378,7 +378,6 @@ class TestCase(unittest.TestCase):
f = open(TESTFN, "r")
try:
self.assertEqual(map(len, f), range(1, 21, 2))
- f.seek(0, 0)
finally:
f.close()
try: