Home
last modified time | relevance | path

Searched refs:cr_frame (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dcoroutines.py172 def cr_frame(self): member in CoroWrapper
173 return self.gen.cr_frame
319 coro_frame = coro.cr_frame
Dbase_tasks.py27 f = task._coro.cr_frame
/external/python/cpython3/Lib/
Dtypes.py200 cr_frame = gi_frame variable in _GeneratorWrapper
Dinspect.py1623 if coroutine.cr_frame is None:
1625 if coroutine.cr_frame.f_lasti == -1:
/external/python/cpython3/Objects/
Dgenobject.c967 {"cr_frame", T_OBJECT, offsetof(PyCoroObject, cr_frame), READONLY},
/external/python/cpython3/Doc/library/
Dinspect.rst199 | | cr_frame | frame |
1219 ``cr_frame`` attributes.
/external/python/cpython3/Lib/test/
Dtest_types.py1337 self.assertIs(wrapper.cr_frame, gen.gi_frame)