summaryrefslogtreecommitdiffstats
path: root/Lib/email
Commit message (Expand)AuthorAgeFilesLines
...
* get_payload(): Document that calling it with no arguments returns aBarry Warsaw2002-09-111-2/+3
* test_utils_quote_unquote(): Test for unquote() properlyBarry Warsaw2002-09-111-0/+7
* rfc822.unquote() doesn't properly de-backslash-ify in Python prior toBarry Warsaw2002-09-111-1/+12
* _parsebody(): Instead of raising a BoundaryError when no startBarry Warsaw2002-09-101-2/+5
* Import _isstring() from the compatibility layer.Barry Warsaw2002-09-101-2/+12
* _isstring(): Factor out "stringiness" test, e.g. for StringType orBarry Warsaw2002-09-102-2/+10
* _ascii_split(): Don't lstrip continuation lines. Closes SF bug #601392.Barry Warsaw2002-09-101-1/+1
* test_splitting_first_line_only_is_long(): New test for SF bug #601392,Barry Warsaw2002-09-101-1/+38
* A sample message with broken MIME boundaries.Barry Warsaw2002-09-101-0/+15
* test_set_param(), test_del_param(): Test RFC 2231 encoding support byBarry Warsaw2002-09-061-1/+68
* _formatparam(), set_param(): RFC 2231 encoding support by OlegBarry Warsaw2002-09-061-3/+11
* test_mondo_message(): "binary" is not a legal content type, so withBarry Warsaw2002-09-061-2/+3
* test_replace_header(): New test for Message.replace_header().Barry Warsaw2002-09-061-0/+17
* replace_header(): New method given by Skip Montanaro in SF patchBarry Warsaw2002-09-061-1/+15
* _structure(): Use .get_content_type()Barry Warsaw2002-09-011-1/+1
* Whitespace normalization.Barry Warsaw2002-08-271-1/+1
* TypoBarry Warsaw2002-08-271-1/+1
* Whitespace normalization.Tim Peters2002-08-233-9/+9
* Bump version number to 2.3Barry Warsaw2002-08-201-1/+1
* Added tests for SF patch #597593, syntactically invalid Content-Type: headers.Barry Warsaw2002-08-201-2/+23
* get_content_type(), get_content_maintype(), get_content_subtype(): RFCBarry Warsaw2002-08-201-5/+5
* _dispatch(): Use get_content_maintype() and get_content_subtype() toBarry Warsaw2002-08-201-3/+2
* test_three_lines(): Test case reported by Andrew McNamara. Works inBarry Warsaw2002-08-201-0/+8
* Use full package paths in imports.Barry Warsaw2002-07-231-7/+2
* Added a couple of more tests for Header charset handling.Barry Warsaw2002-07-231-0/+15
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-232-3/+3
* append(): Bite the bullet and let charset be the string name of aBarry Warsaw2002-07-231-3/+6
* make_header(): Watch out for charset is None, which decode_header()Barry Warsaw2002-07-231-3/+2
* Changed import fromTim Peters2002-07-211-1/+1
* The email package's tests live much better in a subpackageBarry Warsaw2002-07-194-0/+2290
* The email package's tests live much better in a subpackageBarry Warsaw2002-07-1931-0/+1182
* message_from_string(), message_from_file(): The consensus on theBarry Warsaw2002-07-191-2/+2
* Parser.__init__(): The consensus on the mimelib-devel list is thatBarry Warsaw2002-07-191-2/+2
* To better support default content types, fix an API wart, and preserveBarry Warsaw2002-07-191-13/+62
* _structure(): Take an optional `fp' argument which would be the objectBarry Warsaw2002-07-191-3/+7
* _dispatch(): Use the new Message.get_content_type() method as hashedBarry Warsaw2002-07-191-6/+1
* Anthony Baxter's cleanup patch. Python project SF patch # 583190,Barry Warsaw2002-07-182-22/+29
* Anthony Baxter's patch to expose the parser's `strict' flag in theseBarry Warsaw2002-07-181-5/+5
* _structure(): Don't get the whole Content-Type: header, just get theBarry Warsaw2002-07-111-1/+1
* _dispatch(): Comment improvements.Barry Warsaw2002-07-111-3/+3
* make_header(): New function to take the output of decode_header() andBarry Warsaw2002-07-091-6/+45
* Anthony Baxter's patch for non-strict parsing. This adds a `strict'Barry Warsaw2002-07-091-24/+71
* Add the concept of a "default type". Normally the default type isBarry Warsaw2002-07-091-0/+22
* __init__(): Don't attach the subparts if its an empty tuple. If theBarry Warsaw2002-07-091-2/+5
* clone(): A new method for creating a clone of this generator (forBarry Warsaw2002-07-091-27/+24
* __init__(): Be sure to set the default type to message/rfc822.Barry Warsaw2002-07-091-0/+2
* _structure(): A handy little debugging aid that I don't (yet) intendBarry Warsaw2002-07-091-0/+10
* With the addition of Oleg's support for RFC 2231, it's time to bumpBarry Warsaw2002-07-091-1/+1
* append(): Clarify the expected type of charset.Barry Warsaw2002-07-031-1/+2
* Oleg Broytmann's support for RFC 2231 encoded parameters, SF patch #549133Barry Warsaw2002-06-291-0/+57