summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2011-12-22 01:13:37 (GMT)
committerMichael Foord <michael@voidspace.org.uk>2011-12-22 01:13:37 (GMT)
commit3ba95f8bd984a0033c0b2da9974f67f537dedc9e (patch)
treeea10caf6115d029111ef9413fbb1e943df8546c7 /Misc
parent65a3f4b8c57a761cfe0e6ee14565db421c50f4c0 (diff)
downloadcpython-3ba95f8bd984a0033c0b2da9974f67f537dedc9e.zip
cpython-3ba95f8bd984a0033c0b2da9974f67f537dedc9e.tar.gz
cpython-3ba95f8bd984a0033c0b2da9974f67f537dedc9e.tar.bz2
Metaclasses with metaclasses with a __dict__ descriptor can no longer trigger code execution with inspect.getattr_static.
Closes issue 11829.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1ad91c0..9168a55 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,9 @@ Core and Builtins
Library
-------
+- Issue #11829: Fix code execution holes in inspect.getattr_static for
+ metaclasses with metaclasses. Patch by Andreas Stührk.
+
- Issue #1785: Fix inspect and pydoc with misbehaving descriptors.
- Issue #11813: Fix inspect.getattr_static for modules. Patch by Andreas