summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-09-10 23:49:04 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-09-10 23:49:04 (GMT)
commitcb04352e8cb1f81a4bc8b741734713c2877b3d47 (patch)
tree05e163a2768b55b3293af83900d4f49465aabe34 /Misc
parent1017ae525321c89492e8f8e54ce49b8197acdf4f (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 579fc04..007629f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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