mirror of
https://github.com/django/django.git
synced 2025-09-17 16:05:54 +00:00
Fixed #23838 -- added missing __iter__
to LazyObject
This commit is contained in:
parent
888c9b6429
commit
a5b225084f
2 changed files with 18 additions and 7 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue