]> granicus.if.org Git - python/commitdiff
Document that the 'strict' error handler is used to encode/decode filenames on
authorVictor Stinner <victor.stinner@haypocalc.com>
Sat, 9 Oct 2010 10:34:37 +0000 (10:34 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sat, 9 Oct 2010 10:34:37 +0000 (10:34 +0000)
Windows

Doc/c-api/unicode.rst
Doc/library/os.rst

index 8f9e994a1fbe33047a5b3ce5f5c43b991f50b4c3..dac01a4011ca919504ff5d4556b3ef9fa5ec08b7 100644 (file)
@@ -412,26 +412,33 @@ used, passing :c:func:`PyUnicode_FSDecoder` as the conversion function:
 
 .. c:function:: PyObject* PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size)
 
-   Decode a null-terminated string using :c:data:`Py_FileSystemDefaultEncoding`
-   and the ``"surrogateescape"`` error handler.
+   Decode a string using :c:data:`Py_FileSystemDefaultEncoding` and the
+   ``'surrogateescape'`` error handler, or ``'strict'`` on Windows.
 
    If :c:data:`Py_FileSystemDefaultEncoding` is not set, fall back to UTF-8.
 
-   Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` if you know the string length.
+   .. versionchanged:: 3.2
+      Use ``'strict'`` error handler on Windows.
 
 
 .. c:function:: PyObject* PyUnicode_DecodeFSDefault(const char *s)
 
-   Decode a string using :c:data:`Py_FileSystemDefaultEncoding` and
-   the ``"surrogateescape"`` error handler.
+   Decode a null-terminated string using :c:data:`Py_FileSystemDefaultEncoding`
+   and the ``'surrogateescape'`` error handler, or ``'strict'`` on Windows.
 
    If :c:data:`Py_FileSystemDefaultEncoding` is not set, fall back to UTF-8.
 
+   Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` if you know the string length.
+
+   .. versionchanged:: 3.2
+      Use ``'strict'`` error handler on Windows.
+
 
 .. c:function:: PyObject* PyUnicode_EncodeFSDefault(PyObject *unicode)
 
    Encode a Unicode object to :c:data:`Py_FileSystemDefaultEncoding` with the
-   ``'surrogateescape'`` error handler, and return :class:`bytes`.
+   ``'surrogateescape'`` error handler, or ``'strict'`` on Windows, and return
+   :class:`bytes`.
 
    If :c:data:`Py_FileSystemDefaultEncoding` is not set, fall back to UTF-8.
 
index b22c2e9460be6b6b672aa08c5f77ade34319b6b8..92bd606fe000734c06031d42fb0bd70978d3ca42 100644 (file)
@@ -158,9 +158,7 @@ process and user.
 .. function:: fsencode(filename)
 
    Encode *filename* to the filesystem encoding with ``'surrogateescape'``
-   error handler, return :class:`bytes` unchanged. On Windows, use ``'strict'``
-   error handler if the filesystem encoding is ``'mbcs'`` (which is the default
-   encoding).
+   error handler, or ``'strict'`` on Windows; return :class:`bytes` unchanged.
 
    :func:`fsdecode` is the reverse function.
 
@@ -170,9 +168,7 @@ process and user.
 .. function:: fsdecode(filename)
 
    Decode *filename* from the filesystem encoding with ``'surrogateescape'``
-   error handler, return :class:`str` unchanged. On Windows, use ``'strict'``
-   error handler if the filesystem encoding is ``'mbcs'`` (which is the default
-   encoding).
+   error handler, or ``'strict'`` on Windows; return :class:`str` unchanged.
 
    :func:`fsencode` is the reverse function.