From: R David Murray Date: Sat, 20 Sep 2014 21:49:48 +0000 (-0400) Subject: Merge: #21079: is_attachment now looks only at the value, ignoring parameters. X-Git-Tag: v3.5.0a1~891 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1de0ac05f3467faad2e0a0d6d08f86c06bf43b1b;p=python Merge: #21079: is_attachment now looks only at the value, ignoring parameters. --- 1de0ac05f3467faad2e0a0d6d08f86c06bf43b1b diff --cc Misc/NEWS index 1a02975986,c5afa50c83..e4edc4cf39 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -137,12 -32,11 +137,15 @@@ Core and Builtin Library ------- + - Issue #21079: Fix email.message.EmailMessage.is_attachment to return the + correct result when the header has parameters as well as a value. + - Issue #22247: Add NNTPError to nntplib.__all__. +- Issue #22366: urllib.request.urlopen will accept a context object + (SSLContext) as an argument which will then used be for HTTPS connection. + Patch by Alex Gaynor. + - Issue #4180: The warnings registries are now reset when the filters are modified.