mirror of https://github.com/python/cpython
Issue #19030: special-cased __dict__ as the actual dict is not returned, a proxy is.
This commit is contained in:
parent
2498d9e968
commit
a8b0707d91
|
@ -362,6 +362,8 @@ def classify_class_attrs(cls):
|
|||
dict_obj = sentinel
|
||||
if name not in processed:
|
||||
try:
|
||||
if name == '__dict__':
|
||||
raise Exception("__dict__ is special, we don't want the proxy")
|
||||
get_obj = getattr(cls, name)
|
||||
except Exception as exc:
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue