summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-12-09 19:21:17 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-12-09 19:21:17 (GMT)
commitdb6238964d534a160f2b2d8b2b61e19a3d3dee47 (patch)
treeed3c1711b5b573b92e21fa9f5877cd766d345da8 /Misc
parent7f54f7590071589e4a7d440a5a7a691f8e92f837 (diff)
parent720f34a3e8567ee7c46ee7d8752617168bfb5258 (diff)
downloadcpython-db6238964d534a160f2b2d8b2b61e19a3d3dee47.zip
cpython-db6238964d534a160f2b2d8b2b61e19a3d3dee47.tar.gz
cpython-db6238964d534a160f2b2d8b2b61e19a3d3dee47.tar.bz2
(Merge 3.2) 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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 993ba90..af756ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -406,6 +406,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.