summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tarfile.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-05-09 11:22:26 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-05-09 11:22:26 (GMT)
commit263fab94ee1f32b53b709c25c76044719d0eb88e (patch)
treec4aa65d9c62a46d7726e47407dbb3eeba9040ab2 /Lib/test/test_tarfile.py
parent6bcc0f1b5161adf0773ebeba77f1d7662aad4f0e (diff)
downloadcpython-263fab94ee1f32b53b709c25c76044719d0eb88e.zip
cpython-263fab94ee1f32b53b709c25c76044719d0eb88e.tar.gz
cpython-263fab94ee1f32b53b709c25c76044719d0eb88e.tar.bz2
Issue #16601: Restarting iteration over tarfile no more continues from where
it left off. Patch by Michael Birtwell.
Diffstat (limited to 'Lib/test/test_tarfile.py')
-rw-r--r--Lib/test/test_tarfile.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py
index b224bf0..9b98df2 100644
--- a/Lib/test/test_tarfile.py
+++ b/Lib/test/test_tarfile.py
@@ -415,6 +415,14 @@ class MiscReadTest(CommonReadTest):
finally:
support.unlink(empty)
+ def test_parallel_iteration(self):
+ # Issue #16601: Restarting iteration over tarfile continued
+ # from where it left off.
+ with tarfile.open(self.tarname) as tar:
+ for m1, m2 in zip(tar, tar):
+ self.assertEqual(m1.offset, m2.offset)
+ self.assertEqual(m1.get_info(), m2.get_info())
+
class StreamReadTest(CommonReadTest):