(self)
| 752 | """ |
| 753 | |
| 754 | def setUp(self): |
| 755 | super().setUp() |
| 756 | # Indicate explicitly we're ready for the client thread to |
| 757 | # proceed and then perform the blocking call to accept |
| 758 | self.serverExplicitReady() |
| 759 | conn, addr = self.serv.accept() |
| 760 | self.cli_conn = conn |
| 761 | |
| 762 | def tearDown(self): |
| 763 | self.cli_conn.close() |
nothing calls this directly
no test coverage detected