summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-02-27 17:40:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-02-27 17:40:01 (GMT)
commit23e018ab9893369e7669631af16016b83b0de09b (patch)
treec9d25a600019030cee49f5c9390fd352b4cc59ff /Misc
parent8de42e2d50e9609ef4f9a656a0b8e1234db969ac (diff)
downloadcpython-23e018ab9893369e7669631af16016b83b0de09b.zip
cpython-23e018ab9893369e7669631af16016b83b0de09b.tar.gz
cpython-23e018ab9893369e7669631af16016b83b0de09b.tar.bz2
only accept AttributeError as indicating no __prepare__ attribute on a metaclass, allowing lookup errors to propogate
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ee43e63..a04e068 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Handle errors from looking up __prepare__ correctly.
+
- Issue #5939: Add additional runtime checking to ensure a valid capsule
in Modules/_ctypes/callproc.c.