diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-04-19 19:07:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-04-19 19:07:16 (GMT) |
commit | 0f1155c6cc2992ca732dd5f1e9aeed0b8315b0ba (patch) | |
tree | 26dc4ac4e19a23903d5f48ec4a8e48a8371942af /Lib/test/test_asyncore.py | |
parent | 0fbd76b023d5bc05d015603c63a32cc07fbc2191 (diff) | |
download | cpython-0f1155c6cc2992ca732dd5f1e9aeed0b8315b0ba.zip cpython-0f1155c6cc2992ca732dd5f1e9aeed0b8315b0ba.tar.gz cpython-0f1155c6cc2992ca732dd5f1e9aeed0b8315b0ba.tar.bz2 |
Issue #7221: remove redundant tests in test_asyncore. Patch by Jessica McKellar.
Diffstat (limited to 'Lib/test/test_asyncore.py')
-rw-r--r-- | Lib/test/test_asyncore.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py index 084d247..5aaedf3 100644 --- a/Lib/test/test_asyncore.py +++ b/Lib/test/test_asyncore.py @@ -349,9 +349,8 @@ class dispatcherwithsend_noread(asyncore.dispatcher_with_send): def handle_connect(self): pass -class DispatcherWithSendTests(unittest.TestCase): - usepoll = False +class DispatcherWithSendTests(unittest.TestCase): def setUp(self): pass @@ -401,10 +400,6 @@ class DispatcherWithSendTests(unittest.TestCase): self.fail("join() timed out") - -class DispatcherWithSendTests_UsePoll(DispatcherWithSendTests): - usepoll = True - @unittest.skipUnless(hasattr(asyncore, 'file_wrapper'), 'asyncore.file_wrapper required') class FileWrapperTest(unittest.TestCase): |