From: Nick Coghlan Date: Sat, 8 Feb 2014 13:40:23 +0000 (+1000) Subject: Merge #18805 NEWS fix from 3.3 X-Git-Tag: v3.4.0rc1~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f45e3e34b252bf878827ff1c288e1ea31a499054;p=thirdparty%2FPython%2Fcpython.git Merge #18805 NEWS fix from 3.3 --- f45e3e34b252bf878827ff1c288e1ea31a499054 diff --cc Misc/NEWS index 92d668ca99a6,f3f94bfb836a..10ebee27b37e --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -28,17 -49,8 +28,17 @@@ Librar ------- - Issue #18805: the netmask/hostmask parsing in ipaddress now more reliably - filters out illegal values + filters out illegal values and correctly allows any valid prefix length. +- Issue #20481: For at least Python 3.4, the statistics module will require + that all inputs for a single operation be of a single consistent type, or + else a mixed of ints and a single other consistent type. This avoids + some interoperability issues that arose with the previous approach of + coercing to a suitable common type. + +- Issue #20478: the statistics module now treats collections.Counter inputs + like any other iterable. + - Issue #17369: get_filename was raising an exception if the filename parameter's RFC2231 encoding was broken in certain ways. This was a regression relative to python2.