/usr/share/pyshared/djapian/utils/paging.py is in python-django-djapian 2.3.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | from django.core.paginator import Paginator
def paginate(queue, per_page):
paginator = Paginator(queue, per_page)
for num in paginator.page_range:
yield paginator.page(num)
|