()
| 772 | async def call_with_wrong_type_args(): |
| 773 | await anext(1, gen()) |
| 774 | async def call_with_kwarg(): |
| 775 | await anext(aiterator=gen()) |
| 776 | with self.assertRaises(TypeError): |
| 777 | self.loop.run_until_complete(call_with_too_few_args()) |
| 778 | with self.assertRaises(TypeError): |