diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-09-22 13:59:51 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-09-22 13:59:51 (GMT) |
commit | 752a2241eab92d223b4f803c1cd20494bf17e799 (patch) | |
tree | ab634a875096566015e962674516341bbecde440 /Misc | |
parent | fb436c4ebaff171cfff789e702dbc6b5a00281cf (diff) | |
download | cpython-752a2241eab92d223b4f803c1cd20494bf17e799.zip cpython-752a2241eab92d223b4f803c1cd20494bf17e799.tar.gz cpython-752a2241eab92d223b4f803c1cd20494bf17e799.tar.bz2 |
#15925: fix regression: return None for null and non-date strings.
Since the logic for null detection had to move into the _parseaddr
functions, I removed the wrappers from email.utils and just import the
_parseaddr functions directly.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -36,6 +36,9 @@ Core and Builtins Library ------- +- Issue #15925: fixed regression in email.utils.parsedate and parsedate_tz + handling of empty and non-date strings. + - Issue #15421: fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier. |