Home
last modified time | relevance | path

Searched refs:ste_coroutine (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Include/
Dsymtable.h51 unsigned ste_coroutine : 1; /* true if namespace is a coroutine */ member
/external/python/cpython3/Python/
Dsymtable.c81 ste->ste_coroutine = 0; in ste_new()
1352 st->st_cur->ste_coroutine = 1; in symtable_visit_stmt()
1448 st->st_cur->ste_coroutine = 1; in symtable_visit_expr()
1669 st->st_cur->ste_coroutine = 1; in symtable_visit_comprehension()
1722 st->st_cur->ste_coroutine = 1; in symtable_handle_comprehension()
Dcompile.c2988 if (c->u->u_ste->ste_coroutine && c->u->u_ste->ste_generator) in compiler_visit_stmt()
4035 int is_async_function = c->u->u_ste->ste_coroutine; in compiler_comprehension()
4046 is_async_generator = c->u->u_ste->ste_coroutine; in compiler_comprehension()
5349 if (ste->ste_generator && !ste->ste_coroutine) in compute_code_flags()
5351 if (!ste->ste_generator && ste->ste_coroutine) in compute_code_flags()
5353 if (ste->ste_generator && ste->ste_coroutine) in compute_code_flags()