]> granicus.if.org Git - python/commitdiff
Merge #11605: don't use set/get_payload in feedparser; they do conversions.
authorR David Murray <rdmurray@bitdance.com>
Wed, 6 Apr 2011 12:16:13 +0000 (08:16 -0400)
committerR David Murray <rdmurray@bitdance.com>
Wed, 6 Apr 2011 12:16:13 +0000 (08:16 -0400)
1  2 
Lib/test/test_email/test_email.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 91fe4bf1eec0fbe9562417f35765db58d8d8d5e9,2ae7eaf657ab9265ce6c169985a03b2e8e6e1d71..44d4e9ed5fc6aed1ff2c246fb1277c2ea7d3bf6e
+++ 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.