Explorar o código

walk: Separate reordering logic from iteration logic.

Change-Id: I1142cb413891a20555ee31fdfde9a7a09d834a57
Dave Borowitz %!s(int64=13) %!d(string=hai) anos
pai
achega
8cbfaf4235
Modificáronse 1 ficheiros con 12 adicións e 3 borrados
  1. 12 3
      dulwich/walk.py

+ 12 - 3
dulwich/walk.py

@@ -254,8 +254,17 @@ class Walker(object):
                 self._num_entries += 1
                 return entry
 
-    def __iter__(self):
-        results = iter(self._next, None)
+    def _reorder(self, results):
+        """Possibly reorder a results iterator.
+
+        :param results: An iterator of results, in the order returned from the
+            queue_cls.
+        :return: An iterator or list of results, in the order required by the
+            Walker.
+        """
         if self.reverse:
             results = reversed(list(results))
-        return iter(results)
+        return results
+
+    def __iter__(self):
+        return iter(self._reorder(iter(self._next, None)))