Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Dcoroutines.py168 def cr_code(self): member in CoroWrapper
169 return self.gen.cr_code
314 coro_code = coro.cr_code
/external/python/cpython3/Lib/
Dtypes.py199 cr_code = gi_code variable in _GeneratorWrapper
/external/python/cpython3/Lib/test/
Dtest_types.py1257 self.assertEqual(coro.cr_code.co_flags, foo_flags)
1338 self.assertIs(wrapper.cr_code, gen.gi_code)
1461 self.assertIs(foo().cr_code, gen.gi_code)
Dtest_coroutines.py503 self.assertTrue(bool(f.cr_code.co_flags & inspect.CO_COROUTINE))
504 self.assertFalse(bool(f.cr_code.co_flags & inspect.CO_GENERATOR))
/external/python/cpython3/Objects/
Dgenobject.c969 {"cr_code", T_OBJECT, offsetof(PyCoroObject, cr_code), READONLY},
/external/python/cpython3/Doc/library/
Dinspect.rst203 | | cr_code | code |