diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-10-02 17:55:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-10-02 17:55:47 (GMT) |
commit | 970d1887c540d03d51e15db1173d3959acdd8e51 (patch) | |
tree | 34d3c8e211da52e40cef4a90a48379353514d05c /Misc/NEWS | |
parent | 5397e862e2bae29b278cf8756761764e06441db4 (diff) | |
download | cpython-970d1887c540d03d51e15db1173d3959acdd8e51.zip cpython-970d1887c540d03d51e15db1173d3959acdd8e51.tar.gz cpython-970d1887c540d03d51e15db1173d3959acdd8e51.tar.bz2 |
add a test and a note about metaclasses now being abcs
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -10,14 +10,15 @@ What's New in Python 3.2 Alpha 3? Core and Builtins ----------------- +- Issue #10006: type.__abstractmethods__ now raises an AttributeError. As a + result metaclasses can now be ABCs (see #9533). + - Issue #8670: ctypes.c_wchar supports non-BMP characters with 32 bits wchar_t. - Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace UTF-16 surrogate pairs by single non-BMP characters for 16 bits Py_UNICODE and 32 bits wchar_t (eg. Linux in narrow build). -- Issue #10006: type.__abstractmethods__ now raises an AttributeError. - - Issue #10003: Allow handling of SIGBREAK on Windows. Fixes a regression introduced by issue #9324. |