mirror of
https://github.com/django/django.git
synced 2025-09-17 16:05:54 +00:00
Fixed #18447 -- Made LazyObject unwrap on dict access.
Thanks Roman Gladkov and Zbigniew Siciarz.
This commit is contained in:
parent
7cf0f04230
commit
0efafa4c54
2 changed files with 24 additions and 1 deletions
|
@ -249,9 +249,22 @@ class LazyObject(object):
|
|||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
# introspection support:
|
||||
# Introspection support
|
||||
__dir__ = new_method_proxy(dir)
|
||||
|
||||
# Dictionary methods support
|
||||
@new_method_proxy
|
||||
def __getitem__(self, key):
|
||||
return self[key]
|
||||
|
||||
@new_method_proxy
|
||||
def __setitem__(self, key, value):
|
||||
self[key] = value
|
||||
|
||||
@new_method_proxy
|
||||
def __delitem__(self, key):
|
||||
del self[key]
|
||||
|
||||
|
||||
# Workaround for http://bugs.python.org/issue12370
|
||||
_super = super
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue