summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.2.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-10-13 22:02:27 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-10-13 22:02:27 (GMT)
commit8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac (patch)
tree53db405b86756f9164c15497b8696a959f30ccbb /Doc/whatsnew/3.2.rst
parentaa96592a59e1a79246283cddf026a72c9a16d11b (diff)
downloadcpython-8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac.zip
cpython-8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac.tar.gz
cpython-8f6b6b0cc3febd15e33a96bd31dcb3cbef2ad1ac.tar.bz2
Issue #9992: Remove PYTHONFSENCODING environment variable.
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r--Doc/whatsnew/3.2.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index e5d79b6..9ac966d 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -569,12 +569,6 @@ A number of small performance enhancements have been added:
Filenames and Unicode
=====================
-The filesystem encoding can be specified by setting the
-:envvar:`PYTHONFSENCODING` environment variable before running the interpreter.
-The value is an encoding name, e.g. ``iso-8859-1``. This variable is not
-available (ignored) on Windows and Mac OS X: the filesystem encoding is pinned
-to ``'mbcs'`` on Windows and ``'utf-8'`` on Mac OS X.
-
The :mod:`os` module has two new functions: :func:`~os.fsencode` and
:func:`~os.fsdecode`.