summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2011-12-22 01:15:53 (GMT)
committerMichael Foord <michael@voidspace.org.uk>2011-12-22 01:15:53 (GMT)
commit85530aa1c369ce83f59bb2e10b6af34c889894fb (patch)
tree146ddafe3ac4b28f0ec2cdd4d36a9aff00edcc3b /Lib/inspect.py
parent059226b8ec3b94255b356e770c47e4311195af91 (diff)
parent3ba95f8bd984a0033c0b2da9974f67f537dedc9e (diff)
downloadcpython-85530aa1c369ce83f59bb2e10b6af34c889894fb.zip
cpython-85530aa1c369ce83f59bb2e10b6af34c889894fb.tar.gz
cpython-85530aa1c369ce83f59bb2e10b6af34c889894fb.tar.bz2
Merge
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 8b800f4..fc9f612 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -1186,10 +1186,11 @@ def getattr_static(obj, attr, default=_sentinel):
if obj is klass:
# for types we check the metaclass too
for entry in _static_getmro(type(klass)):
- try:
- return entry.__dict__[attr]
- except KeyError:
- pass
+ if _shadowed_dict(type(entry)) is _sentinel:
+ try:
+ return entry.__dict__[attr]
+ except KeyError:
+ pass
if default is not _sentinel:
return default
raise AttributeError(attr)