summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-31 04:04:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-10-31 04:04:42 (GMT)
commit3cb90241fc9d95612879bd8f479c7a059108ef0a (patch)
tree7a9088caaefcb2ea651c78ab426542dd2b8e684b /Misc/NEWS
parent42124a727d0516e8b98b4b2d3dbae4044d34a836 (diff)
parent2c05a2e01b18e9d10cd153308c4866909631e8c0 (diff)
downloadcpython-3cb90241fc9d95612879bd8f479c7a059108ef0a.zip
cpython-3cb90241fc9d95612879bd8f479c7a059108ef0a.tar.gz
cpython-3cb90241fc9d95612879bd8f479c7a059108ef0a.tar.bz2
merge 3.3
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 332299a..7c6a319 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.