diff options
author | Georg Brandl <georg@python.org> | 2012-09-22 07:03:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-09-22 07:03:56 (GMT) |
commit | 1aca31e8f329e19de62a2f1a2080995e5712a9cd (patch) | |
tree | 9a3d62178053892e1bb1033032f88977746a7951 /Misc | |
parent | deb92b5b1b015191bb9f072b67536e471bd37a7a (diff) | |
download | cpython-1aca31e8f329e19de62a2f1a2080995e5712a9cd.zip cpython-1aca31e8f329e19de62a2f1a2080995e5712a9cd.tar.gz cpython-1aca31e8f329e19de62a2f1a2080995e5712a9cd.tar.bz2 |
Closes #15925: fix regression in parsedate() and parsedate_tz() that should return None if unable to parse the argument.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -22,6 +22,10 @@ Library with decimal.py: Infinity coefficients are undefined in _decimal (in accordance with the specification). +- Issue #15925: Fix a regression in email.util where the parsedate() and + parsedate_tz() functions did not return None anymore when the argument could + not be parsed. + Extension Modules ----------------- |