summaryrefslogtreecommitdiffstats
path: root/Lib/email/message.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-291-1/+1
|
* #1078919: document requirement to use triples for non-ascii add_header parms.R. David Murray2010-12-141-2/+7
|
* Merged revisions 85130 via svnmerge fromR. David Murray2010-12-061-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85130 | r.david.murray | 2010-09-30 22:08:02 -0400 (Thu, 30 Sep 2010) | 2 lines Fix a couple spelling errors in comments and delete redundant __len__ def. ........
* #1368247: make set_charset/MIMEText automatically encode unicode _payload.R. David Murray2010-06-021-0/+2
| | | | | | | | Fixes (mysterious, to the end user) UnicodeErrors when using utf-8 as the charset and unicode as the _text argument. Also makes the way in which unicode gets encoded to quoted printable for other charsets more sane (it only worked by accident previously). The _payload now is encoded to the charset.output_charset if it is unicode.
* Issue #5277: Fix quote counting when parsing RFC 2231 encoded parameters.R. David Murray2010-04-131-1/+1
|
* replace has_key with 'in' operatorBenjamin Peterson2009-10-091-7/+7
|
* Issue #7082: When falling back to the MIME 'name' parameter, theR. David Murray2009-10-091-1/+1
| | | | | | correct place to look for it is the Content-Type header. Patch by Darren Worrall.
* #2622 Import errors in email.message, from a py2app standalone application.Amaury Forgeot d'Arc2009-07-111-2/+2
| | | | Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-1/+1
|
* #2676: email/message.py [Message.get_content_type]: Trivial regex hangs on ↵Antoine Pitrou2008-08-151-7/+11
| | | | pathological input
* Remove Barry's love of deprecated syntax to silence warnings in the emailBrett Cannon2008-08-031-6/+6
| | | | package, when run under -3, about using <>.
* Patch #1449244: Support Unicode strings inMartin v. Löwis2007-03-131-2/+4
| | | | | email.message.Message.{set_charset,get_content_charset}. Will backport.
* Forward port some fixes that were in email 2.5 but for some reason didn't makeBarry Warsaw2006-07-261-1/+12
| | | | | | | it into email 4.0. Specifically, in Message.get_content_charset(), handle RFC 2231 headers that contain an encoding not known to Python, or a character in the data that isn't in the charset encoding. Also forward port the appropriate unit tests.
* Merge email package 4.0 from the sandbox, including documentation, test cases,Barry Warsaw2006-03-181-0/+773
and NEWS updates.