diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-10-07 02:10:42 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-10-07 02:10:42 (GMT) |
commit | 7ecc5ba7be9448badd6030eeb56692846dd11c5b (patch) | |
tree | d4464bddc006a88a9320da5268e478b2f494a518 /Misc/HISTORY | |
parent | e24728bb9e0679db5371ec38d54f8b30ff8c51b7 (diff) | |
parent | fd740967baf73dcee9d294f690d41d67e81f308c (diff) | |
download | cpython-7ecc5ba7be9448badd6030eeb56692846dd11c5b.zip cpython-7ecc5ba7be9448badd6030eeb56692846dd11c5b.tar.gz cpython-7ecc5ba7be9448badd6030eeb56692846dd11c5b.tar.bz2 |
Merge: More whatsnew updates. Also move a C-API NEWS item out of library section.
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r-- | Misc/HISTORY | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index 7fbdc85..bebc233 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -1942,6 +1942,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 @@ -2515,10 +2519,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. |