diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2011-10-23 12:36:42 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2011-10-23 12:36:42 (GMT) |
commit | 9715d26305f7cf6c4db91f3670f1b7e99f04dd2d (patch) | |
tree | 0bd6a35f21a42e42ac2bdeb09b0c5a3b9eb3188a /Misc | |
parent | a0e0e232993b87fe446f95d6583d947ae01bf517 (diff) | |
parent | de31b191e570d00ed7917c7f9ea28af3e770c16d (diff) | |
download | cpython-9715d26305f7cf6c4db91f3670f1b7e99f04dd2d.zip cpython-9715d26305f7cf6c4db91f3670f1b7e99f04dd2d.tar.gz cpython-9715d26305f7cf6c4db91f3670f1b7e99f04dd2d.tar.bz2 |
Merge issue 1294232 patch from 3.2
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #1294232: In a few cases involving metaclass inheritance, the + interpreter would sometimes invoke the wrong metaclass when building a new + class object. These cases now behave correctly. Patch by Daniel Urban. + - Issue #12753: Add support for Unicode name aliases and named sequences. Both :func:`unicodedata.lookup()` and '\N{...}' now resolve aliases, and :func:`unicodedata.lookup()` resolves named sequences too. |