summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-07-17 01:28:04 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-07-17 01:28:04 (GMT)
commit6d4a06c91e55e9b939d42d7fac5a6a3bdde3f8f6 (patch)
treea1b1ecf3cddb28023ff3f15248057a2bd4cef387 /Misc
parent43939338354e314f5c39e3d0b3568041b51dc3b9 (diff)
downloadcpython-6d4a06c91e55e9b939d42d7fac5a6a3bdde3f8f6.zip
cpython-6d4a06c91e55e9b939d42d7fac5a6a3bdde3f8f6.tar.gz
cpython-6d4a06c91e55e9b939d42d7fac5a6a3bdde3f8f6.tar.bz2
Merged revisions 82922 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82922 | r.david.murray | 2010-07-16 21:19:57 -0400 (Fri, 16 Jul 2010) | 4 lines #1555570: correctly handle a \r\n that is split by the read buffer. Patch and test by Tony Nelson. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0db6d6e..8f11bb0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -78,6 +78,9 @@ C-API
Library
-------
+- Issue #1555570: email no longer inserts extra blank lines when a \r\n
+ combo crosses an 8192 byte boundary.
+
- Issue #9243: Fix sndhdr module and add unit tests, contributed by James Lee.
- ``ast.literal_eval()`` now allows byte literals.