summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-05-20 00:14:24 (GMT)
committerBarry Warsaw <barry@python.org>2002-05-20 00:14:24 (GMT)
commit47f3e2cb6c51158abd3908d62848b8b9f42a3162 (patch)
tree7eb82c03e9e216e34940515f2942742752da6947 /Misc
parent6d86f8302f3d287e6b182e124f26396d57de83f7 (diff)
downloadcpython-47f3e2cb6c51158abd3908d62848b8b9f42a3162.zip
cpython-47f3e2cb6c51158abd3908d62848b8b9f42a3162.tar.gz
cpython-47f3e2cb6c51158abd3908d62848b8b9f42a3162.tar.bz2
Add a bit of news about the email package fixes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4a41197..ff3fdc6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -179,6 +179,12 @@ Library
circular references by using itself as the locator that gets passed
to the content handler implementation. [SF bug #535474]
+- The email.Parser.Parser class now properly parses strings regardless
+ of their line endings, which can be any of \r, \n, or \r\n (CR, LF,
+ or CRLF). Also, the Header class's constructor default arguments
+ has changed slightly so that an explicit maxlinelen value is always
+ honored.
+
Tools/Demos
- freeze.py now produces binaries which can import shared modules,