(self)
| 971 | c.close() |
| 972 | |
| 973 | def test_await_1(self): |
| 974 | |
| 975 | async def foo(): |
| 976 | await 1 |
| 977 | with self.assertRaisesRegex(TypeError, "'int' object can.t be awaited"): |
| 978 | run_async(foo()) |
| 979 | |
| 980 | def test_await_2(self): |
| 981 | async def foo(): |
nothing calls this directly
no test coverage detected