summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2013-10-02 04:36:09 (GMT)
committerRaymond Hettinger <python@rcn.com>2013-10-02 04:36:09 (GMT)
commit224c87d60ca32b99a6a670545c5b09b2bdef0b41 (patch)
treeccefb8a74face8562d994676e32d3a2b5042de61 /Misc
parent1a33b2f35b9195b440b492afa87dcf83ba2ecca4 (diff)
downloadcpython-224c87d60ca32b99a6a670545c5b09b2bdef0b41.zip
cpython-224c87d60ca32b99a6a670545c5b09b2bdef0b41.tar.gz
cpython-224c87d60ca32b99a6a670545c5b09b2bdef0b41.tar.bz2
Issue #18594: Fix the fallback path in collections.Counter().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 30e6111..cd9a2c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -79,7 +79,8 @@ Library
when necessary. Patch by Oscar Benjamin.
- Issue #18594: The fast path for collections.Counter() was never taken
- due to an over-restrictive type check.
+ due to an over-restrictive type check. And the fallback path did
+ not implement the same algorithm as the pure python code.
- Properly initialize all fields of a SSL object after allocation.