summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-15 20:23:01 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-15 20:23:01 (GMT)
commitb5a40d4d3f5f472fc19ff84e745f150a21391d09 (patch)
tree1f60a5cf88ad7892866b7226e50c0d3695bf1a9e /Misc
parent8437fe2708706eb60769c5a68f3371a244123b3e (diff)
parent6c9e5b779f4cbb16f529f0451a07eaa57caad896 (diff)
downloadcpython-b5a40d4d3f5f472fc19ff84e745f150a21391d09.zip
cpython-b5a40d4d3f5f472fc19ff84e745f150a21391d09.tar.gz
cpython-b5a40d4d3f5f472fc19ff84e745f150a21391d09.tar.bz2
Fix minor subclassing issue with collections.Counter
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f716f2f..6d07bde 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,8 @@ Library
- Issue #11467: Fix urlparse behavior when handling urls which contains scheme
specific part only digits. Patch by Santoso Wijaya.
+- collections.Counter().copy() now works correctly for subclasses.
+
- Issue #11474: Fix the bug with url2pathname() handling of '/C|/' on Windows.
Patch by Santoso Wijaya.