summaryrefslogtreecommitdiff
path: root/django/core/paginator.py
AgeCommit message (Expand)Author
2026-02-27Refs #23919 -- Used yield from in Paginator.Pierre Sassoulas
2026-01-31Refs #34118 -- Removed asgiref coroutine detection shims.Jacob Walls
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-07-09Refs #35844, #35945 -- Used asgiref.sync.iscoroutinefunction() instead of dep...Mariusz Felisiak
2025-03-25Fixed #35452 -- Deprecated orphans being more than or equal to page_size in p...wookkl
2025-03-12Fixed #35945 -- Added async interface to Paginator.wookkl
2023-04-12Fixed #27505 -- Allowed customizing Paginator's error messages.Marcelo Galigniana
2022-10-13Removed unused branch in Paginator.validate_number().Marcelo Galigniana
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2020-08-06Fixed #25513 -- Extracted admin pagination to Paginator.get_elided_page_range().Nick Pope
2019-10-02Fixed #14218 -- Added Paginator.__iter__().Tanner Stirrat
2019-09-10Refs #29703 -- Removed QuerySetPaginator alias per deprecation timeline.Mariusz Felisiak
2019-07-23Improved error message when index in __getitem__() is invalid.Jon Dufresne
2018-08-27Fixed #29703 -- Deprecated QuerySetPaginator alias.Nick Pope
2018-08-07Fixed #29244 -- Prevented Paginator.count() from silencing TypeError and Attr...Josh Schneier
2018-05-09Fixed #29389 -- Made Paginator reject non-integer page numbers of type float.Nicolas NoƩ
2018-02-05Refs #28814 -- Imported from collections.abc to fix Python 3.7 deprecation wa...Raymond Hettinger
2017-10-02Refs #23919 -- Removed unneeded float()/int() calls.Mariusz Felisiak
2017-09-06Fixed #28032 -- Added Paginator.get_page().Sami J. Lehtinen
2017-06-13Fixed #28284 -- Prevented Paginator's unordered object list warning from eval...orf
2017-04-22Fixed #28109 -- Corrected the stack level of unordered queryset pagination wa...Simon Charette
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2016-12-01Refs #27505 -- Made Paginator's exception messsages translatable.Anton Bazhanov
2016-06-08Fixed #26290 -- Warned that paginating an unordered QuerySet may result in in...Emad Mokhtar
2016-04-15Converted property syntax in django.core.paginatorClaude Paroz
2015-07-03Fixed #23190 -- Made Paginator.page_range an iteratorRigel Di Scala
2014-08-03Ensured that Paginator.page_range works the same on Python 2 and 3.Florian Apolloner
2014-08-03Revert "Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`."Florian Apolloner
2014-07-25Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`.Moayad Mardini
2013-05-25Fixed #19938 -- Consumed iterator only once in paginator's PageAndrew Jesaitis
2012-11-21Paginator._get_page hookChris Beaven
2012-11-09Fixed #19261 -- Delayed Queryset evaluation in paginatorsClaude Paroz
2012-11-08Made Page class inherit collections.SequenceClaude Paroz
2012-06-09Fixed #17159 -- Validated returned number of next|previous_page_numberClaude Paroz
2011-05-20Remove an unused import from django.core.paginatorChris Beaven
2011-04-22Fixed #13689 -- Convert the per_page value to an integer upon initialization ...Jannis Leidel
2011-04-13Fixes Paginator.validate_number not raising a PageNotAnInteger exception when...Chris Beaven
2011-04-06Fixes #11596 -- Make paginator.Page iterableChris Beaven
2008-08-02Removed several deprecated features for 1.0 (refs #7830):Gary Wilson Jr
2008-07-28Fixed #6997 -- Corrected `num_pages` calculation when one item is in the obje...Gary Wilson Jr
2008-07-27Made the Paginator class a bit more backwards compatible with the lecacy `Obj...Gary Wilson Jr
2008-07-08Fixed #7307 -- Split InvalidPage exception into two subclasses, PageNotAnInte...Adrian Holovaty
2008-07-08Fixed #7478 -- Rolled QuerySetPaginator into the Paginator class, to simplify...Adrian Holovaty
2008-07-02Made legacy `ObjectPaginator` truly backwards-compatible by catching both `At...Gary Wilson Jr
2008-03-23Fixed a problem in the backwards-compat abilities of the paginator. Calling c...Malcolm Tredinnick
2008-03-18Added a new and improved Paginator class, which allows you to pass a Page obj...Adrian Holovaty