Home
last modified time | relevance | path

Searched refs:cr_await (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dcoroutines.py148 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 CoroWrapper
161 return self.gen.cr_await
/external/python/cpython3/Lib/test/
Dtest_coroutines.py860 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)
Dtest_types.py1339 self.assertIs(wrapper.cr_await, gen.gi_yieldfrom)
/external/python/cpython3/Lib/
Dtypes.py202 cr_await = gi_yieldfrom variable in _GeneratorWrapper
/external/python/cpython3/Doc/library/
Dinspect.rst196 | | cr_await | object being awaited on, |
/external/python/cpython3/Misc/
DNEWS5749 - Issue #24450: Add gi_yieldfrom to generators and cr_await to coroutines.