Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
D__future__.py78 CO_FUTURE_ANNOTATIONS = 0x1000000 # annotations become strings at runtime variable
147 CO_FUTURE_ANNOTATIONS)
/external/python/cpython3/Include/
Dcompile.h21 CO_FUTURE_GENERATOR_STOP | CO_FUTURE_ANNOTATIONS)
/external/python/cpython3/Include/cpython/
Dcode.h98 #define CO_FUTURE_ANNOTATIONS 0x1000000 macro
/external/python/cpython3/Python/
Dfuture.c47 ff->ff_features |= CO_FUTURE_ANNOTATIONS; in future_check_features()
Dast_opt.c611 if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) { in astfold_arg()
625 if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) { in astfold_stmt()
633 if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) { in astfold_stmt()
659 if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) { in astfold_stmt()
Dcompile.c2031 if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) { in compiler_visit_argannotation()
5263 if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) { in compiler_annassign()