diff options
author | Michael Foord <michael@voidspace.org.uk> | 2011-12-22 01:13:37 (GMT) |
---|---|---|
committer | Michael Foord <michael@voidspace.org.uk> | 2011-12-22 01:13:37 (GMT) |
commit | 3ba95f8bd984a0033c0b2da9974f67f537dedc9e (patch) | |
tree | ea10caf6115d029111ef9413fbb1e943df8546c7 /Misc | |
parent | 65a3f4b8c57a761cfe0e6ee14565db421c50f4c0 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |