diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-10 21:57:59 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-09-10 21:57:59 (GMT) |
commit | 5b519e02016ea3a51f784dee70eead3be4ab1aff (patch) | |
tree | 5886b329aef1b3d5fe965c78b97f82f99b93f6bf /Misc | |
parent | 6246d6dcb01c690fd82e870e5c4affbd2848d22c (diff) | |
download | cpython-5b519e02016ea3a51f784dee70eead3be4ab1aff.zip cpython-5b519e02016ea3a51f784dee70eead3be4ab1aff.tar.gz cpython-5b519e02016ea3a51f784dee70eead3be4ab1aff.tar.bz2 |
Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING
environment variable to set the filesystem encoding at Python startup.
sys.setfilesystemencoding() creates inconsistencies because it is unable to
reencode all filenames in all objects.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -29,6 +29,11 @@ Core and Builtins Library ------- +- Issue #9632: Remove sys.setfilesystemencoding() function: use + PYTHONFSENCODING environment variable to set the filesystem encoding at + Python startup. sys.setfilesystemencoding() creates inconsistencies because + it is unable to reencode all filenames in all objects. + - Issue #9410: Various optimizations to the pickle module, leading to speedups up to 4x (depending on the benchmark). Mostly ported from Unladen Swallow; initial patch by Alexandre Vassalotti. |