(self)
| 42 | class TestEPoll(unittest.TestCase): |
| 43 | |
| 44 | def setUp(self): |
| 45 | self.serverSocket = socket.create_server(('127.0.0.1', 0)) |
| 46 | self.connections = [self.serverSocket] |
| 47 | |
| 48 | def tearDown(self): |
| 49 | for skt in self.connections: |
nothing calls this directly
no test coverage detected