(self)
| 993 | class SubprocessProactorTests(SubprocessMixin, test_utils.TestCase): |
| 994 | |
| 995 | def setUp(self): |
| 996 | super().setUp() |
| 997 | self.loop = asyncio.ProactorEventLoop() |
| 998 | self.set_event_loop(self.loop) |
| 999 | |
| 1000 | |
| 1001 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected