|
|
@ -21,10 +21,11 @@ class Paginator(object): |
|
|
|
result = self.func(*self.args, **self.kwargs) |
|
|
|
|
|
|
|
if not len(result): |
|
|
|
return |
|
|
|
return 0 |
|
|
|
|
|
|
|
self._buffer.extend(result) |
|
|
|
self._sort_key_value = self._key(result[-1]) |
|
|
|
return len(result) |
|
|
|
|
|
|
|
def next(self): |
|
|
|
return self.__next__() |
|
|
@ -34,7 +35,8 @@ class Paginator(object): |
|
|
|
|
|
|
|
def __next__(self): |
|
|
|
if not len(self._buffer): |
|
|
|
self.fill() |
|
|
|
if not self.fill(): |
|
|
|
raise StopIteration |
|
|
|
|
|
|
|
if self._bulk: |
|
|
|
res = self._buffer |
|
|
|