diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-29 16:25:49 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-04-29 16:25:49 (GMT) |
commit | 2154fd16d251023078be674d6fa0c4787418c7f3 (patch) | |
tree | c4dce198475c6a0d19089d4ab6e681ef81ecc81d /Doc/library/sys.rst | |
parent | f7317f9efcc6a109e702984b595fbf61895285e3 (diff) | |
download | cpython-2154fd16d251023078be674d6fa0c4787418c7f3.zip cpython-2154fd16d251023078be674d6fa0c4787418c7f3.tar.gz cpython-2154fd16d251023078be674d6fa0c4787418c7f3.tar.bz2 |
Merged revisions 80624 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r80624 | ezio.melotti | 2010-04-29 18:24:51 +0200 (Thu, 29 Apr 2010) | 9 lines
Merged revisions 80620 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80620 | ezio.melotti | 2010-04-29 18:07:20 +0200 (Thu, 29 Apr 2010) | 1 line
Group the Windows entries in getfilesystemencoding doc, move the win 9x one at the bottom of the list and fix some markup.
........
................
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index be26b63..c48ff1b 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -300,17 +300,19 @@ always available. file names, or ``None`` if the system default encoding is used. The result value depends on the operating system: - * On Windows 9x, the encoding is "mbcs". - - * On Mac OS X, the encoding is "utf-8". + * On Mac OS X, the encoding is ``'utf-8'``. * On Unix, the encoding is the user's preference according to the result of - nl_langinfo(CODESET), or :const:`None` if the ``nl_langinfo(CODESET)`` failed. + nl_langinfo(CODESET), or ``None`` if the ``nl_langinfo(CODESET)`` + failed. * On Windows NT+, file names are Unicode natively, so no conversion is - performed. :func:`getfilesystemencoding` still returns ``'mbcs'``, as this is - the encoding that applications should use when they explicitly want to convert - Unicode strings to byte strings that are equivalent when used as file names. + performed. :func:`getfilesystemencoding` still returns ``'mbcs'``, as + this is the encoding that applications should use when they explicitly + want to convert Unicode strings to byte strings that are equivalent when + used as file names. + + * On Windows 9x, the encoding is ``'mbcs'``. .. function:: getrefcount(object) |