Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Dcoroutines.py164 def cr_running(self): member in CoroWrapper
165 return self.gen.cr_running
287 running = coro.cr_running
/external/python/cpython3/Lib/
Dtypes.py201 cr_running = gi_running variable in _GeneratorWrapper
Dinspect.py1621 if coroutine.cr_running:
/external/python/cpython3/Objects/
Dgenobject.c968 {"cr_running", T_BOOL, offsetof(PyCoroObject, cr_running), READONLY},
/external/python/cpython3/Doc/library/
Dinspect.rst201 | | cr_running | is the coroutine running? |
1218 will accept any coroutine-like object that has ``cr_running`` and
/external/python/cpython3/Lib/test/
Dtest_types.py1336 self.assertIs(wrapper.cr_running, gen.gi_running)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py2434 coro.cr_running = True