summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-10-14 00:36:13 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-10-14 00:36:13 (GMT)
commitc1f32ca0ade3a1bc60c0ca18efa4756d3c5282f1 (patch)
tree1c74f247d04636a22421c20b4a6976b450659e70 /Misc
parentd41a98bdd9076eeadf4d3ba6d8db287e26b89777 (diff)
downloadcpython-c1f32ca0ade3a1bc60c0ca18efa4756d3c5282f1.zip
cpython-c1f32ca0ade3a1bc60c0ca18efa4756d3c5282f1.tar.gz
cpython-c1f32ca0ade3a1bc60c0ca18efa4756d3c5282f1.tar.bz2
Issue #10653: On Windows, use strftime() instead of wcsftime() because
wcsftime() doesn't format time zone correctly.
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 3c3bff8..44447ba 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #10653: On Windows, use strftime() instead of wcsftime() because
+ wcsftime() doesn't format time zone correctly.
+
- Issue #11171: Fix distutils.sysconfig.get_makefile_filename when Python was
configured with different prefix and exec-prefix.