diff options
author | Raymond Hettinger <python@rcn.com> | 2013-10-02 04:36:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-10-02 04:36:09 (GMT) |
commit | 224c87d60ca32b99a6a670545c5b09b2bdef0b41 (patch) | |
tree | ccefb8a74face8562d994676e32d3a2b5042de61 /Misc | |
parent | 1a33b2f35b9195b440b492afa87dcf83ba2ecca4 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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. |