From: Barry Warsaw Date: Mon, 20 May 2002 00:14:24 +0000 (+0000) Subject: Add a bit of news about the email package fixes. X-Git-Tag: v2.3c1~5646 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=47f3e2cb6c51158abd3908d62848b8b9f42a3162;p=python Add a bit of news about the email package fixes. --- diff --git a/Misc/NEWS b/Misc/NEWS index 4a4119768e..ff3fdc6b75 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,