diff options
author | Larry Hastings <larry@hastings.org> | 2016-09-05 15:11:23 -0700 |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2016-09-05 15:11:23 -0700 |
commit | 10108a7b9affa61719a1dc1863edb2bdb3402fd1 (patch) | |
tree | f36ecf8b8a8974ac2e2659e97f6bd8a111149a29 /Lib/asyncore.py | |
parent | Issue #27744: correct comment and markup (diff) | |
download | cpython-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.py | 2 |
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): |