(self)
| 979 | c.close() |
| 980 | |
| 981 | def test_await_1(self): |
| 982 | |
| 983 | async def foo(): |
| 984 | await 1 |
| 985 | with self.assertRaisesRegex(TypeError, "'int' object can.t be awaited"): |
| 986 | run_async(foo()) |
| 987 | |
| 988 | def test_await_2(self): |
| 989 | async def foo(): |
nothing calls this directly
no test coverage detected