From: R David Murray Date: Wed, 6 Apr 2011 12:16:13 +0000 (-0400) Subject: Merge #11605: don't use set/get_payload in feedparser; they do conversions. X-Git-Tag: v3.3.0a1~2655 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a0b1c77a19ecfe58d34d10ba4b60f9bb4ad217f0;p=python Merge #11605: don't use set/get_payload in feedparser; they do conversions. --- a0b1c77a19ecfe58d34d10ba4b60f9bb4ad217f0 diff --cc Misc/NEWS index 91fe4bf1ee,2ae7eaf657..44d4e9ed5f --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -94,17 -49,11 +94,20 @@@ Core and Builtin Library ------- + - Issue #11605: email.parser.BytesFeedParser was incorrectly converting multipart + subpararts with an 8bit CTE into unicode instead of preserving the bytes. + - Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. +- Issue #10791: Implement missing method GzipFile.read1(), allowing GzipFile + to be wrapped in a TextIOWrapper. Patch by Nadeem Vawda. + +- Issue #11707: Added a fast C version of functools.cmp_to_key(). + Patch by Filip Gruszczyński. + +- Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by + Torsten Landschoff. + - Issue #11746: Fix SSLContext.load_cert_chain() to accept elliptic curve private keys.