diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_asyncore.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py index e5b2f0c..b2c0198 100644 --- a/Lib/test/test_asyncore.py +++ b/Lib/test/test_asyncore.py @@ -619,12 +619,8 @@ class BaseTestAPI(unittest.TestCase): # we start disconnected self.assertFalse(server.connected) self.assertTrue(server.accepting) - # XXX - Solaris seems to connect() immediately even without - # starting the poller. This is something which should be - # fixed as handle_connect() gets called immediately even if - # no connection actually took place (see issue #8490). - if not sys.platform.startswith("sunos"): - self.assertFalse(client.connected) + # this can't be taken for granted across all platforms + #self.assertFalse(client.connected) self.assertFalse(client.accepting) # execute some loops so that client connects to server |