summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-08-23 01:34:00 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-08-23 01:34:00 (GMT)
commitb8687df6532b809f41d77dfc617363d3c093ec88 (patch)
tree48e09484522d82be90843fe16584126f41a63116 /Misc
parent17183a2972e8981c0d0ca2d599b6e08fc662fc28 (diff)
downloadcpython-b8687df6532b809f41d77dfc617363d3c093ec88.zip
cpython-b8687df6532b809f41d77dfc617363d3c093ec88.tar.gz
cpython-b8687df6532b809f41d77dfc617363d3c093ec88.tar.bz2
#665194: Update email.utils.localtime to use astimezone, and fix bug.
The new code correctly handles historic changes in UTC offsets. A test for this should follow. Original patch by Alexander Belopolsky.
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 ceab279..16442cc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
+- Issue ##665194: Update email.utils.localtime to use datetime.astimezone and
+ correctly handle historic changes in UTC offsets.
+
- Issue #15199: Fix JavaScript's default MIME type to application/javascript.
Patch by Bohuslav Kabrda.