summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-09-22 13:59:51 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-09-22 13:59:51 (GMT)
commit752a2241eab92d223b4f803c1cd20494bf17e799 (patch)
treeab634a875096566015e962674516341bbecde440 /Misc
parentfb436c4ebaff171cfff789e702dbc6b5a00281cf (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index abe8eb8..ac44910 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.