diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-09 11:22:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-09 11:22:26 (GMT) |
commit | 263fab94ee1f32b53b709c25c76044719d0eb88e (patch) | |
tree | c4aa65d9c62a46d7726e47407dbb3eeba9040ab2 /Lib/test/test_tarfile.py | |
parent | 6bcc0f1b5161adf0773ebeba77f1d7662aad4f0e (diff) | |
download | cpython-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.py | 8 |
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): |