()
| 171 | |
| 172 | def test_constructor_use_running_loop(self): |
| 173 | async def test(): |
| 174 | return self._new_future() |
| 175 | f = self.loop.run_until_complete(test()) |
| 176 | self.assertIs(f._loop, self.loop) |
| 177 | self.assertIs(f.get_loop(), self.loop) |
nothing calls this directly
no test coverage detected