summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-15 20:12:21 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-15 20:12:21 (GMT)
commit37c0fe56b9053f5f388ba6d6217506a6e73bb819 (patch)
tree6bfb62f27d7eea8b75d21a8380f25a46376353bd /Misc
parent65c620d0c771e69a7177fc845273000e97dcf472 (diff)
downloadcpython-37c0fe56b9053f5f388ba6d6217506a6e73bb819.zip
cpython-37c0fe56b9053f5f388ba6d6217506a6e73bb819.tar.gz
cpython-37c0fe56b9053f5f388ba6d6217506a6e73bb819.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 3f75b1e..ed28d31 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -58,6 +58,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.