summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-05-29 16:05:53 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-05-29 16:05:53 (GMT)
commit4b8f6651f017cc380a13e095aae3bb2a1255b758 (patch)
tree103ccedc5a260af2f65889ce711ebfad6987eba5 /Misc
parent67473810075aa085a2b5a8f61b33af97e158bc96 (diff)
parentf0ab5d6e7f46ec8d06d2a62db0e316cd7443238f (diff)
downloadcpython-4b8f6651f017cc380a13e095aae3bb2a1255b758.zip
cpython-4b8f6651f017cc380a13e095aae3bb2a1255b758.tar.gz
cpython-4b8f6651f017cc380a13e095aae3bb2a1255b758.tar.bz2
Branch merge
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4962721..e9bfef9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -299,7 +299,7 @@ Library
- Issue #7311: fix html.parser to accept non-ASCII attribute values.
- Issue #11605: email.parser.BytesFeedParser was incorrectly converting
- multipart subpararts with an 8bit CTE into unicode instead of preserving the
+ multipart subparts with an 8-bit CTE into unicode instead of preserving the
bytes.
- Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.
@@ -496,7 +496,7 @@ Tests
- Issue #11577: improve test coverage of binhex.py. Patch by Arkady Koplyarov.
-- Issue #11578: added test for the timeit module. Patch Michael Henry.
+- Issue #11578: added test for the timeit module. Patch by Michael Henry.
- Issue #11503: improve test coverage of posixpath.py. Patch by Evan Dandrea.
@@ -796,10 +796,10 @@ Library
comparisons that could lead to infinite recursion.
- Issue #10686: the email package now :rfc:`2047`\ -encodes headers with
- non-ASCII bytes (parsed by a Bytes Parser) when doing conversion to 7bit-clean
+ non-ASCII bytes (parsed by a BytesParser) when doing conversion to 7bit-clean
presentation, instead of replacing them with ?s.
-- email.header.Header was incorrectly encoding folding white space when
+- email.header.Header was incorrectly encoding folding whitespace when
rfc2047-encoding header values with embedded newlines, leaving them without
folding whitespace. It now uses the continuation_ws, as it does for
continuation lines that it creates itself.