]> granicus.if.org Git - python/commitdiff
Issue #16601: Restarting iteration over tarfile no more continues from where
authorSerhiy Storchaka <storchaka@gmail.com>
Thu, 9 May 2013 11:22:26 +0000 (14:22 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Thu, 9 May 2013 11:22:26 +0000 (14:22 +0300)
it left off.  Patch by Michael Birtwell.

Lib/tarfile.py
Lib/test/test_tarfile.py
Misc/ACKS
Misc/NEWS

index 11b4b68146451491063e9c628f6df3b86fda7d8e..6693840c2268c877f5cdaa13f5337f54ff985dd8 100644 (file)
@@ -2398,16 +2398,18 @@ class TarIter:
         # Fix for SF #1100429: Under rare circumstances it can
         # happen that getmembers() is called during iteration,
         # which will cause TarIter to stop prematurely.
-        if not self.tarfile._loaded:
+
+        if self.index == 0 and self.tarfile.firstmember is not None:
+            tarinfo = self.tarfile.next()
+        elif self.index < len(self.tarfile.members):
+            tarinfo = self.tarfile.members[self.index]
+        elif not self.tarfile._loaded:
             tarinfo = self.tarfile.next()
             if not tarinfo:
                 self.tarfile._loaded = True
                 raise StopIteration
         else:
-            try:
-                tarinfo = self.tarfile.members[self.index]
-            except IndexError:
-                raise StopIteration
+            raise StopIteration
         self.index += 1
         return tarinfo
 
index b224bf093fc8d7b8630ac7de5784101ae7ba1429..9b98df215de89b8539cf6dfd8915294907b4fc26 100644 (file)
@@ -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):
 
index 56bb6afb83e1ef5561f72ac997189984ad4416dd..ed30056c6a066e355a839dafe2d8a52e01513625 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -117,6 +117,7 @@ Adrian von Bidder
 David Binger
 Dominic Binks
 Philippe Biondi
+Michael Birtwell
 Stuart Bishop
 Roy Bixler
 Jonathan Black
index 4739cfdff5bd329d4909ad8a27eb5ced6482dd4b..4d1ee47fd49993537fbd51260f02de3979ca7455 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #16601: Restarting iteration over tarfile no more continues from where
+  it left off.  Patch by Michael Birtwell.
+
 - Issue #17289: The readline module now plays nicer with external modules
   or applications changing the rl_completer_word_break_characters global
   variable.  Initial patch by Bradley Froehle.