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
a5b22508
Kaydet (Commit)
a5b22508
authored
Mar 07, 2015
tarafından
Rik
Kaydeden (comit)
Baptiste Mispelon
Mar 08, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23838 -- added missing `__iter__` to LazyObject
üst
888c9b64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
functional.py
django/utils/functional.py
+2
-2
test_lazyobject.py
tests/utils_tests/test_lazyobject.py
+16
-5
No files found.
django/utils/functional.py
Dosyayı görüntüle @
a5b22508
...
...
@@ -298,11 +298,11 @@ class LazyObject(object):
__ne__
=
new_method_proxy
(
operator
.
ne
)
__hash__
=
new_method_proxy
(
hash
)
# Dictionary methods support
#
List/Tuple/
Dictionary methods support
__getitem__
=
new_method_proxy
(
operator
.
getitem
)
__setitem__
=
new_method_proxy
(
operator
.
setitem
)
__delitem__
=
new_method_proxy
(
operator
.
delitem
)
__iter__
=
new_method_proxy
(
iter
)
__len__
=
new_method_proxy
(
len
)
__contains__
=
new_method_proxy
(
operator
.
contains
)
...
...
tests/utils_tests/test_lazyobject.py
Dosyayı görüntüle @
a5b22508
...
...
@@ -165,11 +165,22 @@ class LazyObjectTestCase(TestCase):
del
obj_dict
[
'f'
]
def
test_iter
(
self
):
# LazyObjects don't actually implements __iter__ but you can still
# iterate over them because they implement __getitem__
obj
=
self
.
lazy_wrap
([
1
,
2
,
3
])
for
expected
,
actual
in
zip
([
1
,
2
,
3
],
obj
):
self
.
assertEqual
(
expected
,
actual
)
# Tests whether an object's custom `__iter__` method is being
# used when iterating over it.
class
IterObject
(
object
):
def
__init__
(
self
,
values
):
self
.
values
=
values
def
__iter__
(
self
):
return
iter
(
self
.
values
)
original_list
=
[
'test'
,
'123'
]
self
.
assertEqual
(
list
(
self
.
lazy_wrap
(
IterObject
(
original_list
))),
original_list
)
def
test_pickle
(
self
):
# See ticket #16563
...
...
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