summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-08 11:10:09 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-08 11:10:09 (GMT)
commit449c466e7d17292c46c08ef9a458fbdc5ddb7987 (patch)
tree87f02ca27a0f64708d8618012252d7678f6ac44a /Misc
parent4cda46ab9167ab6c46e1cbb6caea6fbb021605ac (diff)
downloadcpython-449c466e7d17292c46c08ef9a458fbdc5ddb7987.zip
cpython-449c466e7d17292c46c08ef9a458fbdc5ddb7987.tar.gz
cpython-449c466e7d17292c46c08ef9a458fbdc5ddb7987.tar.bz2
Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytes
for use in the file system, environment variables or the command line.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 98ec0d2..77aa054 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -351,6 +351,9 @@ C-API
Library
-------
+- Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytes
+ for use in the file system, environment variables or the command line.
+
- Issue #8571: Fix an internal error when compressing or decompressing a
chunk larger than 1GB with the zlib module's compressor and decompressor
objects.