(self)
| 622 | ThreadedTCPSocketTest.__init__(self, methodName=methodName) |
| 623 | |
| 624 | def setUp(self): |
| 625 | ThreadedTCPSocketTest.setUp(self) |
| 626 | # Indicate explicitly we're ready for the client thread to |
| 627 | # proceed and then perform the blocking call to accept |
| 628 | self.serverExplicitReady() |
| 629 | conn, addr = self.serv.accept() |
| 630 | self.cli_conn = conn |
| 631 | |
| 632 | def tearDown(self): |
| 633 | self.cli_conn.close() |
nothing calls this directly
no test coverage detected