1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-20 20:22:54 +02:00

Add __len__ to PagedLists

This commit is contained in:
Philipp Hagemeister 2014-01-22 21:43:33 +01:00
parent bd2d82a5d3
commit dd26ced164

View File

@ -1172,6 +1172,10 @@ def __init__(self, pagefunc, pagesize):
self._pagefunc = pagefunc
self._pagesize = pagesize
def __len__(self):
# This is only useful for tests
return len(self.getslice())
def getslice(self, start=0, end=None):
res = []
for pagenum in itertools.count(start // self._pagesize):