summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-19 01:05:19 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-19 01:05:19 (GMT)
commite8d5145e18318e0b5003371d4d666c4e445f610e (patch)
tree4777af9b6fd7369e380fb79c5ec0dd7cbed859ee /Misc/NEWS
parentdbe6042f0a5b8c193efbd75cab0733bbadad4efd (diff)
downloadcpython-e8d5145e18318e0b5003371d4d666c4e445f610e.zip
cpython-e8d5145e18318e0b5003371d4d666c4e445f610e.tar.gz
cpython-e8d5145e18318e0b5003371d4d666c4e445f610e.tar.bz2
Create os.fsdecode(): decode from the filesystem encoding with surrogateescape
error handler, or strict error handler on Windows. * Rewrite os.fsencode() documentation * Improve os.fsencode and os.fsdecode() tests using the new PYTHONFSENCODING environment variable
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 23245a8..31fec7a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -116,6 +116,9 @@ Extensions
Library
-------
+- Create os.fsdecode(): decode from the filesystem encoding with
+ surrogateescape error handler, or strict error handler on Windows.
+
- Issue #3488: Provide convenient shorthand functions ``gzip.compress``
and ``gzip.decompress``. Original patch by Anand B. Pillai.