summaryrefslogtreecommitdiffstats
path: root/Lib/email/header.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 73952 via svnmerge fromAmaury Forgeot d'Arc2009-07-111-3/+3
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73952 | amaury.forgeotdarc | 2009-07-11 16:33:51 +0200 (sam., 11 juil. 2009) | 4 lines #2622 Import errors in email.message, from a py2app standalone application. Patch by Mads Kiilerich, Reviewed by Barry Warsaw. ........
* Remove Barry's love of deprecated syntax to silence warnings in the emailBrett Cannon2008-08-031-2/+2
| | | | package, when run under -3, about using <>.
* SF bug #1582282; decode_header() incorrectly splits not-conformant RFCBarry Warsaw2007-03-141-1/+2
| | | | | | | 2047-like headers where there is no whitespace between encoded words. This fix changes the matching regexp to include a trailing lookahead assertion that the closing ?= must be followed by whitespace, newline, or end-of-string. This also changes the regexp to add the MULTILINE flag.
* Merge email package 4.0 from the sandbox, including documentation, test cases,Barry Warsaw2006-03-181-0/+502
and NEWS updates.