diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-14 00:06:23 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-14 00:06:23 (GMT) |
commit | accd1c040f472f613cdac8fbf78e75794819acfc (patch) | |
tree | 8830397de5d56f37dd1413f1ef4c2bb686ee3d80 /Misc | |
parent | 0cfc23762fb3cc5467d50de020a3b69710884aa5 (diff) | |
download | cpython-accd1c040f472f613cdac8fbf78e75794819acfc.zip cpython-accd1c040f472f613cdac8fbf78e75794819acfc.tar.gz cpython-accd1c040f472f613cdac8fbf78e75794819acfc.tar.bz2 |
#1162477: accept '.' in addition to ':' when parsing time in date header.
Some non-compliant MUAs use '.'s, so by the Postel Principle we should
accept them. Patch by Thomas Herve.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -68,6 +68,9 @@ Core and Builtins Library ------- +- Issue #1162477: Postel Principal adjustment to email date parsing: handle the + fact that some non-compliant MUAs use '.' instead of ':' in time specs. + - Issue #11131: Fix sign of zero in decimal.Decimal plus and minus operations when the rounding mode is ROUND_FLOOR. |