aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2016-09-05 15:11:23 -0700
committerLarry Hastings <larry@hastings.org>2016-09-05 15:11:23 -0700
commit10108a7b9affa61719a1dc1863edb2bdb3402fd1 (patch)
treef36ecf8b8a8974ac2e2659e97f6bd8a111149a29 /Lib/asyncore.py
parentIssue #27744: correct comment and markup (diff)
downloadcpython-10108a7b9affa61719a1dc1863edb2bdb3402fd1.tar.gz
cpython-10108a7b9affa61719a1dc1863edb2bdb3402fd1.tar.bz2
cpython-10108a7b9affa61719a1dc1863edb2bdb3402fd1.zip
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/asyncore.py')
-rw-r--r--Lib/asyncore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py
index 4b046d67e39..705e4068130 100644
--- a/Lib/asyncore.py
+++ b/Lib/asyncore.py
@@ -333,7 +333,7 @@ class dispatcher:
self.connecting = True
err = self.socket.connect_ex(address)
if err in (EINPROGRESS, EALREADY, EWOULDBLOCK) \
- or err == EINVAL and os.name in ('nt', 'ce'):
+ or err == EINVAL and os.name == 'nt':
self.addr = address
return
if err in (0, EISCONN):