diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-10 23:49:04 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-10 23:49:04 (GMT) |
commit | cb04352e8cb1f81a4bc8b741734713c2877b3d47 (patch) | |
tree | 05e163a2768b55b3293af83900d4f49465aabe34 /Misc | |
parent | 1017ae525321c89492e8f8e54ce49b8197acdf4f (diff) | |
download | cpython-cb04352e8cb1f81a4bc8b741734713c2877b3d47.zip cpython-cb04352e8cb1f81a4bc8b741734713c2877b3d47.tar.gz cpython-cb04352e8cb1f81a4bc8b741734713c2877b3d47.tar.bz2 |
Issue #9579, #9580: Fix os.confstr() for value longer than 255 bytes and encode
the value with filesystem encoding and surrogateescape (instead of utf-8 in
strict mode).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -29,6 +29,10 @@ Core and Builtins Library ------- +- Issue #9579, #9580: Fix os.confstr() for value longer than 255 bytes and + encode the value with filesystem encoding and surrogateescape (instead of + utf-8 in strict mode). + - Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING environment variable to set the filesystem encoding at Python startup. sys.setfilesystemencoding() creates inconsistencies because |