diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-09 11:36:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-09 11:36:58 (GMT) |
commit | b3c5d8568030842c6fbd30a6f197c8b684e0ccc6 (patch) | |
tree | 517e83deb06792e056b50606483824d66db46f8f /Lib/test | |
parent | f28dfdd07b57fa16f7d489e7ac99d9a15f1bef80 (diff) | |
parent | 263fab94ee1f32b53b709c25c76044719d0eb88e (diff) | |
download | cpython-b3c5d8568030842c6fbd30a6f197c8b684e0ccc6.zip cpython-b3c5d8568030842c6fbd30a6f197c8b684e0ccc6.tar.gz cpython-b3c5d8568030842c6fbd30a6f197c8b684e0ccc6.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')
-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 5bbd48e..a69437c 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): |