Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
6508db2f
Kaydet (Commit)
6508db2f
authored
Tem 25, 2014
tarafından
Moayad Mardini
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23088 -- Used `six` `range` type in `Paginator.page_range`.
üst
bb395a15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
paginator.py
django/core/paginator.py
+1
-1
tests.py
tests/pagination/tests.py
+7
-0
No files found.
django/core/paginator.py
Dosyayı görüntüle @
6508db2f
...
...
@@ -96,7 +96,7 @@ class Paginator(object):
Returns a 1-based range of pages for iterating through within
a template for loop.
"""
return
range
(
1
,
self
.
num_pages
+
1
)
return
six
.
moves
.
range
(
1
,
self
.
num_pages
+
1
)
page_range
=
property
(
_get_page_range
)
...
...
tests/pagination/tests.py
Dosyayı görüntüle @
6508db2f
...
...
@@ -232,6 +232,13 @@ class PaginationTests(unittest.TestCase):
self
.
assertEqual
(
page2
.
previous_page_number
(),
1
)
self
.
assertIsNone
(
page2
.
next_page_number
())
def
test_page_range_type
(
self
):
"""
Ticket #23088: Paginator.page_range is of inconsistent type in Py2/Py3
"""
paginator
=
Paginator
([
1
,
2
,
3
],
2
)
self
.
assertEqual
(
type
(
paginator
.
page_range
),
six
.
moves
.
range
)
class
ModelPaginationTests
(
TestCase
):
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment