diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-15 12:27:16 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-15 12:27:16 (GMT) |
commit | b744ba1d14c5487576c95d0311e357b707600b47 (patch) | |
tree | 8730e891809884fd8b458b65e7d4bb26ebf6ef0e /Misc/NEWS | |
parent | 06ba9ade85be733e4c6c3708c088317068ae20d9 (diff) | |
download | cpython-b744ba1d14c5487576c95d0311e357b707600b47.zip cpython-b744ba1d14c5487576c95d0311e357b707600b47.tar.gz cpython-b744ba1d14c5487576c95d0311e357b707600b47.tar.bz2 |
Issue #8610: Load file system codec at startup, and display a fatal error on
failure. Set the file system encoding to utf-8 (instead of None) if getting
the locale encoding failed, or if nl_langinfo(CODESET) function is missing.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 1? Core and Builtins ----------------- +- Issue #8610: Load file system codec at startup, and display a fatal error on + failure. Set the file system encoding to utf-8 (instead of None) if getting + the locale encoding failed, or if nl_langinfo(CODESET) function is missing. + - PyFile_FromFd() uses PyUnicode_DecodeFSDefault() instead of PyUnicode_FromString() to support surrogates in the filename and use the right encoding |