summaryrefslogtreecommitdiffstats
path: root/Lib/email/MIMEText.py
Commit message (Collapse)AuthorAgeFilesLines
* Docstring consistency with the updated .tex files.Barry Warsaw2002-10-011-3/+3
|
* __init__(): Minor code cleanup.Barry Warsaw2002-09-281-1/+1
|
* Use absolute import paths for intrapackage imports.Barry Warsaw2002-06-021-5/+5
| | | | | 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-14/+21
| | | | | | | | | 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/+41
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.