summaryrefslogtreecommitdiffstats
path: root/Lib/email/MIMEMessage.py
Commit message (Collapse)AuthorAgeFilesLines
* __init__(): Be sure to set the default type to message/rfc822.Barry Warsaw2002-07-091-0/+2
|
* Use absolute import paths for intrapackage imports.Barry Warsaw2002-06-021-5/+7
| | | | | Use MIMENonMultipart as the base class so that you can't attach() to these non-multipart message types.
* Sync'ing with standalone email package 2.0.1. This adds support forBarry Warsaw2002-04-101-1/+1
| | | | | | | | | non-us-ascii character sets in headers and bodies. Some API changes (with DeprecationWarnings for the old APIs). Better RFC-compliant implementations of base64 and quoted-printable. Updated test cases. Documentation updates to follow (after I finish writing them ;).
* Give me back my page breaks.Barry Warsaw2001-10-041-1/+1
|
* Whitespace normalization.Tim Peters2001-10-041-1/+1
|
* Image.py and class Image => MIMEImage.py and MIMEImageBarry Warsaw2001-09-261-0/+28
Text.py and class Text => MIMEText.py and MIMEText MessageRFC822.py and class MessageRFC822 => MIMEMessage.py and MIMEMessage These are renamed so as to be more consistent; these are MIME specific derived classes for when creating the object model out of whole cloth.