Searched refs:cr_await (Results 1 – 6 of 6) sorted by relevance
148 cr_await = getattr(self.gen, 'cr_await', None)149 if cr_await is not None:152 "awaiting for {!r}".format(self.gen, cr_await))160 def cr_await(self): member in CoroWrapper161 return self.gen.cr_await
860 self.assertIsNone(coro_b.cr_await)863 self.assertIsNone(coro_b.cr_await)869 self.assertIsNone(coro_b.cr_await)871 self.assertIsNone(coro_b.cr_await)875 self.assertIsNone(coro_b.cr_await)879 self.assertEqual(coro_b.cr_await.cr_await.gi_code.co_name, 'a')884 self.assertIsNone(coro_b.cr_await)
1339 self.assertIs(wrapper.cr_await, gen.gi_yieldfrom)
202 cr_await = gi_yieldfrom variable in _GeneratorWrapper
196 | | cr_await | object being awaited on, |
5749 - Issue #24450: Add gi_yieldfrom to generators and cr_await to coroutines.