summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-23 20:35:46 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-12-23 20:35:46 (GMT)
commit4a62e89728a9394af43a6b791140d90ee4b45c11 (patch)
tree25e5bbf56a6ec345ae3f782e5eab3fa3881e12fe /Misc
parent25b8cca6e890ba405dfdbe284c929718d86f6aaf (diff)
downloadcpython-4a62e89728a9394af43a6b791140d90ee4b45c11.zip
cpython-4a62e89728a9394af43a6b791140d90ee4b45c11.tar.gz
cpython-4a62e89728a9394af43a6b791140d90ee4b45c11.tar.bz2
#1155362: allow hh:mm:ss-uuuu like we allow hh:mm:ss+uuuu in parsedate_tz
Original patch by Thomas Herve.
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 9462981..faf5554 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Core and Builtins
Library
-------
+- Issue #1155362: email.utils.parsedate_tz now handles a missing space before
+ the '-' of a timezone field as well as before a '+'.
+
- Issue #4871: The zipfile module now gives a more useful error message if
an attempt is made to use a string to specify the archive password.