aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-39040: Fix parsing of email mime headers with whitespace between encoded-...Abhilash Raj2020-05-281-0/+9
* bpo-38708: email: Fix a potential IndexError when parsing Message-ID (GH-17504)Abhilash Raj2019-12-081-1/+1
* bpo-38698: Add a new InvalidMessageID token to email header parser. (GH-17503)Abhilash Raj2019-12-081-4/+16
* bpo-38698: Prevent UnboundLocalError to pop up in parse_message_id (GH-17277)Claudiu Popa2019-12-041-1/+2
* bpo-38332: Catch KeyError from unknown cte in encoded-word. (GH-16503)Andrei Troie2019-10-051-1/+1
* bpo-37764: Fix infinite loop when parsing unstructured email headers. (GH-15239)Ashwin Ramaswami2019-08-311-3/+16
* bpo-37482: Fix email address name with encoded words and special chars (GH-14...bsiem2019-08-211-0/+3
* bpo-32178: Fix IndexError trying to parse 'To' header starting with ':'. (GH-...Abhilash Raj2019-08-111-1/+3
* bpo-34155: Dont parse domains containing @ (GH-13079)jpic2019-07-171-0/+2
* Fix IndexError when parsing unexpectedly ending quoted-string. (GH-14813)Abhilash Raj2019-07-171-1/+1
* bpo-37461: Fix infinite loop in parsing of specially crafted email headers (G...Abhilash Raj2019-07-171-0/+3
* Fix infinite loop in email folding logic (GH-12732)Paul Ganssle2019-07-161-5/+12
* bpo-29412: Fix indexError when parsing a header value ending unexpectedly (GH...Abhilash Raj2019-06-261-0/+3
* bpo-36520: Email header folded incorrectly (#13608)websurfer52019-06-061-0/+1
* bpo-21315: Fix parsing of encoded words with missing leading ws. (#13425)Abhilash Raj2019-06-051-0/+21
* bpo-35805: Add parser for Message-ID email header. (GH-13397)Abhilash Raj2019-06-041-15/+122
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-031-1/+1
* bpo-33524: Fix the folding of email header when max_line_length is 0 or None ...Abhilash Raj2019-05-171-1/+2
* bpo-33529, email: Fix infinite loop in email header encoding (GH-12020)Krzysztof Wojcik2019-05-141-10/+13
* bpo-34424: Handle different policy.linesep lengths correctly. (#8803)Jens Troeger2019-05-131-1/+1
* email: use dict instead of OrderedDict (GH-11709)Inada Naoki2019-02-051-2/+1
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Serhiy Storchaka2018-11-051-2/+2
* bpo-33476: Fix _header_value_parser when address group is missing final ';' (...Dong-hee Na2018-07-281-1/+1
* bpo-32746: Fix multiple typos (GH-5144)Leo Arias2018-02-031-2/+2
* bpo-27931: Fix email address header parsing error (#5329)jayyyin2018-01-291-1/+7
* bpo-27240 Rewrite the email header folding algorithm. (#3488)R. David Murray2017-12-031-443/+286
* bpo-30349: Raise FutureWarning for nested sets and set operations (#1553)Serhiy Storchaka2017-11-161-5/+4
* bpo-30532: Fix whitespace folding in certain casesJoel Hillacre2017-06-261-3/+1
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-8/+8
* Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList.Serhiy Storchaka2016-07-171-2/+2
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-3/+3
* #24211: Add RFC6532 support to the email library.R David Murray2015-05-171-4/+7
* #23745: handle duplicate MIME parameter names in new parser.R David Murray2015-03-291-7/+27
* #20977: fix undefined name in the email module. Patch by Rose Ames.Ezio Melotti2014-08-041-3/+3
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+1
* Merge: #16983: Apply postel's law to encoded words inside quoted strings.R David Murray2014-02-081-0/+7
|\
| * #16983: Apply postel's law to encoded words inside quoted strings.R David Murray2014-02-081-0/+7
* | Merge: #18431: Decode encoded words in atoms in new email parser.R David Murray2013-07-121-2/+21
|\|
| * #18431: Decode encoded words in atoms in new email parser.R David Murray2013-07-121-2/+21
* | Merge: #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=R David Murray2013-07-111-36/+7
|\|
| * #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=R David Murray2013-07-111-36/+7
* | Issue #17516: use comment syntax for comments, instead of multiline stringVictor Stinner2013-03-261-18/+16
* | Merge with 3.3, issue #17047: remove doubled words added in 3.3,Terry Jan Reedy2013-03-111-1/+1
|\|
| * Issue #17047: remove doubled words added in 3.3Terry Jan Reedy2013-03-111-1/+1
* | utilize yield fromPhilip Jenvey2012-10-011-2/+1
|/
* #15160: Extend the new email parser to handle MIME headers.R David Murray2012-06-241-3/+801
* Recognize '<>' as a special case of an angle-addr in header_value_parser.R David Murray2012-05-261-1/+11
* #12586: add provisional email policy with new header parsing and folding.R David Murray2012-05-251-0/+2145