commit | 720f34a3e8567ee7c46ee7d8752617168bfb5258 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Fri Dec 09 20:19:24 2011 +0100 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Fri Dec 09 20:19:24 2011 +0100 |
tree | af07178adfbd921138d6e6c0f6678256bdf83d00 | |
parent | 383dd58533465f7c1dea4f60e942f283267fd1ed [diff] [blame] |
Issue #5905: time.strftime() is now using the locale encoding, instead of UTF-8, if the wcsftime() function is not available.
diff --git a/Misc/NEWS b/Misc/NEWS index 91fae45..6d18ddf 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -90,6 +90,9 @@ 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.