Issue #27355: Removed support for Windows CE. It was never finished,

and Windows CE is no longer a relevant platform for Python.
This commit is contained in:
Larry Hastings 2016-09-05 15:11:23 -07:00
parent 8c21ab0ab9
commit 10108a7b9a
27 changed files with 28 additions and 1549 deletions

View file

@ -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()