summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-10-31 03:51:03 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-10-31 03:51:03 (GMT)
commit8afa7fa51064848d826e4eb8a2bd46cf7f730b0f (patch)
treeef0fb644e04cbf28714579ef0985a1cd9d951354 /Misc
parente8ea97fffb591cd71090d0f3114bf1d3bcd31454 (diff)
downloadcpython-8afa7fa51064848d826e4eb8a2bd46cf7f730b0f.zip
cpython-8afa7fa51064848d826e4eb8a2bd46cf7f730b0f.tar.gz
cpython-8afa7fa51064848d826e4eb8a2bd46cf7f730b0f.tar.bz2
don't shadow the __qualname__ descriptor with __qualname__ in the class's __dict__ (closes #16271)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 44ae5f0..726d1f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- 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.