Changes between Initial Version and Version 2 of Ticket #17159
- Timestamp:
- Nov 6, 2011, 11:59:07 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17159
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
-
Ticket #17159 – Description
initial v2 3 3 Repro Steps 4 4 ======= 5 {{{#!python 5 6 >>> from django.core.paginator import Paginator 6 7 >>> objects = ['john', 'paul', 'george', 'ringo', 'bill', 'gates', 'steve', 'jobs'] … … 20 21 >>> p.page(4).next_page_number() ### Should throw Exception 21 22 5 22 >>> 23 }}}