diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-31 04:04:42 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-31 04:04:42 (GMT) |
commit | 3cb90241fc9d95612879bd8f479c7a059108ef0a (patch) | |
tree | 7a9088caaefcb2ea651c78ab426542dd2b8e684b /Misc/NEWS | |
parent | 42124a727d0516e8b98b4b2d3dbae4044d34a836 (diff) | |
parent | 2c05a2e01b18e9d10cd153308c4866909631e8c0 (diff) | |
download | cpython-3cb90241fc9d95612879bd8f479c7a059108ef0a.zip cpython-3cb90241fc9d95612879bd8f479c7a059108ef0a.tar.gz cpython-3cb90241fc9d95612879bd8f479c7a059108ef0a.tar.bz2 |
merge 3.3
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -15,9 +15,15 @@ Core and Builtins Py_TPFLAGS_TYPE_SUBCLASS ((1 << 31). PyType_GetFlags() result type is now unsigned too (unsigned long, instead of long). +- Fix segfaults on setting __qualname__ on builtin types and attempting to + delete it on any type. + - Issue #14625: Rewrite the UTF-32 decoder. It is now 3x to 4x faster. Patch written by Serhiy Storchaka. +- Issue #16271: Fix strange bugs that resulted from __qualname__ appearing in a + class's __dict__ and on type. + - Issue #16197: Update winreg docstrings and documentation to match code. Patch by Zachary Ware. |