[utils] Add `__getitem__` for `PagedList`

pull/355/head
pukkandan 3 years ago
parent 483336e79e
commit 55575225b4
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -4000,6 +4000,15 @@ class PagedList(object):
# This is only useful for tests
return len(self.getslice())
def getslice(self, start, end):
raise NotImplementedError('This method must be implemented by subclasses')
def __getitem__(self, idx):
if not isinstance(idx, int) or idx < 0:
raise TypeError('indices must be non-negative integers')
entries = self.getslice(idx, idx + 1)
return entries[0] if entries else None
class OnDemandPagedList(PagedList):
def __init__(self, pagefunc, pagesize, use_cache=True):

Loading…
Cancel
Save