summaryrefslogtreecommitdiff
path: root/Lib/email
Commit message (Expand)AuthorAgeFilesLines
* #11686: add missing entries to email __all__ lists.R David Murray2012-03-165-11/+9
* #14062: fix BytesParser handling of linesep for Header objectsR David Murray2012-03-142-2/+25
* #14291: if a header has non-ascii unicode, default to CTE using utf-8R David Murray2012-03-142-3/+25
* Fix few typos.Florent Xicluna2011-11-111-1/+1
* #11584: make Header and make_header handle binary unknown-8bit inputR David Murray2011-06-182-1/+19
* #11584: make decode_header handle Header objects correctlyR David Murray2011-06-182-4/+5
* #11492: rewrite header folding algorithm. Less code, more passing tests.R David Murray2011-04-182-197/+241
* Improve message.py test coverage to 100%.R David Murray2011-04-161-0/+56
* Merge with 3.1.Ezio Melotti2011-04-1317-157/+1015
|\
| * Merge: Add maxlinelen to docstring, delete obsolete wordingR David Murray2011-04-1217-157/+1015
| |\
| | * Merge #11492: fix header truncation on folding when there are runs of split c...R David Murray2011-04-072-3/+14
| | |\
| | * \ Merge: Improve test coverage of _split_ascii method.R David Murray2011-04-071-0/+43
| | |\ \
| | * | | #11605: don't use set/get_payload in feedparser; they do conversions.R David Murray2011-04-062-2/+49
| | * | | #11584: Since __getitem__ returns headers, make decode_header handle them.R David Murray2011-03-252-0/+20
| | * | | Merge #11606: improved body_encode algorithm, no longer produces overlong linesR David Murray2011-03-242-61/+103
| | |\ \ \
| | * \ \ \ Merge #11590: fix quoprimime decode handling of empty strings and line endings.R David Murray2011-03-2317-155/+946
| | |\ \ \ \
| | | * \ \ \ Merge #11589: add additional tests for the email quoprimime module.R David Murray2011-03-231-14/+178
| | | |\ \ \ \
| | | * | | | | #11243: tests and fixes for handling of 'dirty data' in additional methodsR David Murray2011-03-162-5/+60
| | | * | | | | Merge #11401 fix from 3.1.R David Murray2011-03-1617-151/+887
| | | |\ \ \ \ \
| | | | * \ \ \ \ Merge #9298 fix.R David Murray2011-03-162-6/+16
| | | | |\ \ \ \ \
| | | | * \ \ \ \ \ #11565: Merge with 3.1.Ezio Melotti2011-03-1617-151/+887
| | | | |\ \ \ \ \ \
| | | | | * \ \ \ \ \ Merge #11555 as_string doc fix from 3.1.R David Murray2011-03-151-2/+1
| | | | | |\ \ \ \ \ \
| | | | | * | | | | | | Remove obsolete comment.R David Murray2011-03-151-1/+1
| | | | | * | | | | | | #11554: reactivate test_email_codecs, and make it pass.R David Murray2011-03-154-22/+46
| | | | | * | | | | | | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
| | | | | |\ \ \ \ \ \ \
| | | | | * | | | | | | | Fix header encoding of long headers when using euc-jp and shift_jis.R David Murray2011-03-142-1/+15
| | | | | * | | | | | | | Harmonize linesep docstrings, and fix the quoting of \r\nR David Murray2011-03-142-3/+6
| | | | | * | | | | | | | Lib/email/test/data/msg_26.txt had its line endings wrong in the SVN repository.Antoine Pitrou2011-03-051-46/+46
| | | | | * | | | | | | | Add updated .hgeol file and fix newlines in the 3.2 branch.Georg Brandl2011-03-051-46/+46
| | | | | * | | | | | | | #11019: Make BytesGenerator handle Message with None body.R. David Murray2011-01-262-0/+9
| | | | | * | | | | | | | Revert r88197. I'll refix correctly once there is a test.R. David Murray2011-01-261-5/+2
| | | | | * | | | | | | | Fix BytesGenerator._handle_text() if the message has no payload (None)Victor Stinner2011-01-261-2/+5
| | | | | * | | | | | | | fix import in email.message_from_binary_file()Victor Stinner2011-01-251-1/+1
| | | | | * | | | | | | | #5871: protect against header injection attacks.R. David Murray2011-01-092-1/+21
| | | | | * | | | | | | | #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s.R. David Murray2011-01-074-55/+89
| | | | | * | | | | | | | Fix formatting of values with embedded newlines when rfc2047 encodingR. David Murray2011-01-072-3/+21
| | | | | * | | | | | | | Remove doc for nonexisting parameter.Georg Brandl2011-01-061-3/+1
| | | | | * | | | | | | | #10790: make append work when output codec is different from input codecR. David Murray2011-01-052-16/+14
| | | | | * | | | | | | | Fix a comment typo and update another comment to match Python3 realityR. David Murray2010-12-291-2/+2
| | | | | * | | | | | | | #1693546: don't add quotes around RFC 2231 encoded values.R. David Murray2010-12-242-5/+49
| | | | | * | | | | | | | #1155362: allow hh:mm:ss-uuuu like we allow hh:mm:ss+uuuu in parsedate_tzR. David Murray2010-12-232-1/+13
| | | | | * | | | | | | | Fix the change made for issue 1243654.R. David Murray2010-12-212-1/+13
| | | | | * | | | | | | | #9286: Fix the rfc822 parser to preserve whitespace in address local part.R. David Murray2010-12-182-2/+32
| | | | | * | | | | | | | #1078919: make add_header automatically do RFC2231 encoding when needed.R. David Murray2010-12-132-3/+44
| | | | | * | | | | | | | #243654: only create a new MIME boundary if we don't already have one.R. David Murray2010-12-121-12/+6
| | | | | * | | | | | | | #8989: add 'domain' keyword to make_msgid.R. David Murray2010-12-022-4/+11
| | | | | * | | | | | | | Fix TestBytesGeneratorIdempotent tests and a couple bugs they revealed.R. David Murray2010-11-212-15/+37
| | | | | * | | | | | | | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-33/+33
| | | | | * | | | | | | | Improve TestBytesGeneratorIdempotent using by using linesep.R. David Murray2010-11-201-6/+8
| | | | | * | | | | | | | Properly close files used by test_email.Brett Cannon2010-10-291-3/+4