diff options
author | Larry Hastings <larry@hastings.org> | 2016-09-05 22:11:23 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2016-09-05 22:11:23 (GMT) |
commit | 10108a7b9affa61719a1dc1863edb2bdb3402fd1 (patch) | |
tree | f36ecf8b8a8974ac2e2659e97f6bd8a111149a29 /Lib/tarfile.py | |
parent | 8c21ab0ab92d7f10a7ada9d5f157ee69c9095e63 (diff) | |
download | cpython-10108a7b9affa61719a1dc1863edb2bdb3402fd1.zip cpython-10108a7b9affa61719a1dc1863edb2bdb3402fd1.tar.gz cpython-10108a7b9affa61719a1dc1863edb2bdb3402fd1.tar.bz2 |
Issue #27355: Removed support for Windows CE. It was never finished,
and Windows CE is no longer a relevant platform for Python.
Diffstat (limited to 'Lib/tarfile.py')
-rwxr-xr-x | Lib/tarfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py index df4745d..960c673 100755 --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -144,7 +144,7 @@ PAX_NUMBER_FIELDS = { #--------------------------------------------------------- # initialization #--------------------------------------------------------- -if os.name in ("nt", "ce"): +if os.name == "nt": ENCODING = "utf-8" else: ENCODING = sys.getfilesystemencoding() |