summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-10-07 02:08:08 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-10-07 02:08:08 (GMT)
commitfd740967baf73dcee9d294f690d41d67e81f308c (patch)
treea80f32c1361fa9939e2ee14cbdf11189b297e7bb /Misc
parentca76ea16ad616fb3c486fbe55d93548f34a7e505 (diff)
downloadcpython-fd740967baf73dcee9d294f690d41d67e81f308c.zip
cpython-fd740967baf73dcee9d294f690d41d67e81f308c.tar.gz
cpython-fd740967baf73dcee9d294f690d41d67e81f308c.tar.bz2
More whatsnew updates. Also move a C-API NEWS item out of library section.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4ab80d5..396a60f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2066,6 +2066,10 @@ Core and Builtins
- PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.
+- Issue #13560: Add PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize()
+ and PyUnicode_EncodeLocale() functions to the C API to decode/encode from/to
+ the current locale encoding.
+
- Add internal API for static strings (_Py_identifier et al.).
- Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described
@@ -2639,10 +2643,6 @@ 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.
-
- Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem
encoding and the surrogateescape error handler, rather than UTF-8. Patch
by David Watson.