summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-12-09 19:19:24 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-12-09 19:19:24 (GMT)
commit720f34a3e8567ee7c46ee7d8752617168bfb5258 (patch)
treeaf07178adfbd921138d6e6c0f6678256bdf83d00 /Misc/NEWS
parent383dd58533465f7c1dea4f60e942f283267fd1ed (diff)
downloadcpython-720f34a3e8567ee7c46ee7d8752617168bfb5258.zip
cpython-720f34a3e8567ee7c46ee7d8752617168bfb5258.tar.gz
cpython-720f34a3e8567ee7c46ee7d8752617168bfb5258.tar.bz2
Issue #5905: time.strftime() is now using the locale encoding, instead of
UTF-8, if the wcsftime() function is not available.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 91fae45..6d18ddf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -90,6 +90,9 @@ Core and Builtins
Library
-------
+- Issue #5905: time.strftime() is now using the locale encoding, instead of
+ UTF-8, if the wcsftime() function is not available.
+
- Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..".
Patch by Tal Einat.