diff options
author | Raymond Hettinger <python@rcn.com> | 2013-10-01 07:55:43 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-10-01 07:55:43 (GMT) |
commit | 2ff2190b6293966f76633d810dfbe2d232ff5973 (patch) | |
tree | 8eac2140c5decc70779e02017262149039ccd5d3 /Misc/NEWS | |
parent | 21b2933456fc3ce2d1594d704671f4fc298ca37c (diff) | |
download | cpython-2ff2190b6293966f76633d810dfbe2d232ff5973.zip cpython-2ff2190b6293966f76633d810dfbe2d232ff5973.tar.gz cpython-2ff2190b6293966f76633d810dfbe2d232ff5973.tar.bz2 |
Issue #18594: Fix the fast path for collections.Counter().
The path wasn't being taken due to an over-restrictive type check.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -74,6 +74,9 @@ Library - Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary. Patch by Oscar Benjamin. +- Issue #18594: The fast path for collections.Counter() was never taken + due to an over-restrictive type check. + - Properly initialize all fields of a SSL object after allocation. - Issue #4366: Fix building extensions on all platforms when --enable-shared |