py/objtype: Handle __dict__ attribute when type has no locals.

This commit is contained in:
Jim Mussared
2020-08-04 14:28:06 +10:00
committed by Damien George
parent 880875bea1
commit b137d064e9
2 changed files with 11 additions and 3 deletions

View File

@@ -17,3 +17,8 @@ class Foo:
d = Foo.__dict__
print(d["a"], d["b"])
# dict of a class that has no locals_dict (return empty dict).
d = type(type('')).__dict__
print(d is not None)