Issue #27355: Removed support for Windows CE.  It was never finished,
and Windows CE is no longer a relevant platform for Python.
diff --git a/Lib/asyncore.py b/Lib/asyncore.py
index 4b046d6..705e406 100644
--- a/Lib/asyncore.py
+++ b/Lib/asyncore.py
@@ -333,7 +333,7 @@
         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):