(self)
| 68 | super().setUp() |
| 69 | |
| 70 | def tearDown(self): |
| 71 | # just in case if we have transport close callbacks |
| 72 | if not self.loop.is_closed(): |
| 73 | test_utils.run_briefly(self.loop) |
| 74 | |
| 75 | self.doCleanups() |
| 76 | support.gc_collect() |
| 77 | super().tearDown() |
| 78 | |
| 79 | def _basetest_sock_client_ops(self, httpd, sock): |
| 80 | if not isinstance(self.loop, proactor_events.BaseProactorEventLoop): |
nothing calls this directly
no test coverage detected