Browse Source

[bugfix] Paginator should stop iteration when completed

pull/54/head
Andrei 8 years ago
parent
commit
3496d6f3b9
  1. 6
      CHANGELOG.md
  2. 6
      disco/util/paginator.py

6
CHANGELOG.md

@ -1,5 +1,11 @@
# CHANGELOG
## v0.0.12
### Fixes
- Fixed `Paginator` throwing an exception when reaching the end of pagination, instead of just ending its iteration
## v0.0.11
### Additions

6
disco/util/paginator.py

@ -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

Loading…
Cancel
Save