summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-12-17 03:45:09 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-12-17 03:45:09 (GMT)
commit1f33f2b0c381337d5991c227652d65eadd168209 (patch)
tree4f2303936f90a15a9d7a132a3d5f57c238eba38d /Misc/NEWS
parentf2ea71fcc8986101512265b685d8d3dfdf7b7bdb (diff)
downloadcpython-1f33f2b0c381337d5991c227652d65eadd168209.zip
cpython-1f33f2b0c381337d5991c227652d65eadd168209.tar.gz
cpython-1f33f2b0c381337d5991c227652d65eadd168209.tar.bz2
Issue #13560: os.strerror() now uses the current locale encoding instead of UTF-8
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 51505d4..286192c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -419,6 +419,9 @@ Core and Builtins
Library
-------
+- Issue #13560: os.strerror() now uses the current locale encoding instead of
+ UTF-8.
+
- Issue #13560: Add PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize()
and PyUnicode_EncodeLocale() functions to the C API to decode/encode from/to
the current locale encoding.