diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-11 23:46:47 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-11 23:46:47 (GMT) |
commit | 0f35e2c0f44b2012e4e32aaccde6fa42756e61f1 (patch) | |
tree | 18a6f8dcfdf211b7b63825b3a09eea5a691b0389 /Doc | |
parent | 7909b0085a86c6956506ff1892fdc6feac2dbfd1 (diff) | |
download | cpython-0f35e2c0f44b2012e4e32aaccde6fa42756e61f1.zip cpython-0f35e2c0f44b2012e4e32aaccde6fa42756e61f1.tar.gz cpython-0f35e2c0f44b2012e4e32aaccde6fa42756e61f1.tar.bz2 |
Issue #8784: Set tarfile default encoding to 'utf-8' on Windows.
Note: file system encoding cannot be None anymore (since r81190, issue #8610).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tarfile.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index c2a9143..b1d7361 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -185,8 +185,8 @@ The following variables are available on module level: .. data:: ENCODING - The default character encoding i.e. the value from either - :func:`sys.getfilesystemencoding` or :func:`sys.getdefaultencoding`. + The default character encoding: ``'utf-8'`` on Windows, + :func:`sys.getfilesystemencoding` otherwise. .. seealso:: |