summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-15 20:21:30 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-15 20:21:30 (GMT)
commit6c9e5b779f4cbb16f529f0451a07eaa57caad896 (patch)
treea30993e15b87a81825f4202207b62d8ab6d9bf85 /Misc
parent8881868e08439cf758c0bcdcf7cdb54c822ae1f2 (diff)
parent1c746c28f3cfe798ed4d7b51f50adaa685a4fb0e (diff)
downloadcpython-6c9e5b779f4cbb16f529f0451a07eaa57caad896.zip
cpython-6c9e5b779f4cbb16f529f0451a07eaa57caad896.tar.gz
cpython-6c9e5b779f4cbb16f529f0451a07eaa57caad896.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 2c3f86d..fbb7411 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,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.