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
f675afa1
Kaydet (Commit)
f675afa1
authored
Tem 09, 2015
tarafından
darkryder
Kaydeden (comit)
Tim Graham
Tem 10, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25093 -- Added utils.datastructures.OrderedSet.__len__()
üst
11e6bf9b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
datastructures.py
django/utils/datastructures.py
+3
-0
test_datastructures.py
tests/utils_tests/test_datastructures.py
+8
-0
No files found.
django/utils/datastructures.py
Dosyayı görüntüle @
f675afa1
...
...
@@ -37,6 +37,9 @@ class OrderedSet(object):
def
__nonzero__
(
self
):
# Python 2 compatibility
return
type
(
self
)
.
__bool__
(
self
)
def
__len__
(
self
):
return
len
(
self
.
dict
)
class
MultiValueDictKeyError
(
KeyError
):
pass
...
...
tests/utils_tests/test_datastructures.py
Dosyayı görüntüle @
f675afa1
...
...
@@ -21,6 +21,14 @@ class OrderedSetTests(SimpleTestCase):
s
.
add
(
1
)
self
.
assertTrue
(
s
)
def
test_len
(
self
):
s
=
OrderedSet
()
self
.
assertEqual
(
len
(
s
),
0
)
s
.
add
(
1
)
s
.
add
(
2
)
s
.
add
(
2
)
self
.
assertEqual
(
len
(
s
),
2
)
class
MultiValueDictTests
(
SimpleTestCase
):
...
...
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