summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-10-14 00:39:06 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-10-14 00:39:06 (GMT)
commit792b47f6caba35c996db8361d06a0368eb58bea0 (patch)
tree6829326e25b21278e5f85a1ee2d56c3f9e126548 /Misc
parentf5cff56a1be70d2c4e5cde5fa4e5d5d92e620dda (diff)
parentc1f32ca0ade3a1bc60c0ca18efa4756d3c5282f1 (diff)
downloadcpython-792b47f6caba35c996db8361d06a0368eb58bea0.zip
cpython-792b47f6caba35c996db8361d06a0368eb58bea0.tar.gz
cpython-792b47f6caba35c996db8361d06a0368eb58bea0.tar.bz2
(Merge 3.2) 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 63099ac..681fae3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -305,6 +305,9 @@ Core and Builtins
Library
-------
+- Issue #10653: On Windows, use strftime() instead of wcsftime() because
+ wcsftime() doesn't format time zone correctly.
+
- Issue #13150: The tokenize module doesn't compile large regular expressions
at startup anymore.