Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Big email 3.0 API changes, with updated unit tests and documentation. | Barry Warsaw | 2004-10-03 | 1 | -22/+5 |
| | | | | | | | | | | | | | | | | | Briefly (from the NEWS file): - Updates for the email package: + All deprecated APIs that in email 2.x issued warnings have been removed: _encoder argument to the MIMEText constructor, Message.add_payload(), Utils.dump_address_pair(), Utils.decode(), Utils.encode() + New deprecations: Generator.__call__(), Message.get_type(), Message.get_main_type(), Message.get_subtype(), the 'strict' argument to the Parser constructor. These will be removed in email 3.1. + Support for Python earlier than 2.3 has been removed (see PEP 291). + All defect classes have been renamed to end in 'Defect'. + Some FeedParser fixes; also a MultipartInvariantViolationDefect will be added to messages that claim to be multipart but really aren't. + Updates to documentation. | ||||
* | __init__(): Don't add a newline to _text if it doesn't already end in | Barry Warsaw | 2003-03-11 | 1 | -4/+1 |
| | | | | one. Possibly controversial. | ||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-10-01 | 1 | -3/+3 |
| | |||||
* | __init__(): Minor code cleanup. | Barry Warsaw | 2002-09-28 | 1 | -1/+1 |
| | |||||
* | Use absolute import paths for intrapackage imports. | Barry Warsaw | 2002-06-02 | 1 | -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 for | Barry Warsaw | 2002-04-10 | 1 | -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 Warsaw | 2001-10-04 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-10-04 | 1 | -1/+1 |
| | |||||
* | Image.py and class Image => MIMEImage.py and MIMEImage | Barry Warsaw | 2001-09-26 | 1 | -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. |