Lines Matching refs:c_future
154 PyFutureFeatures *c_future; /* pointer to module's __future__ */ member
324 c.c_future = PyFuture_FromASTObject(mod, filename); in PyAST_CompileObject()
325 if (c.c_future == NULL) in PyAST_CompileObject()
331 merged = c.c_future->ff_features | flags->cf_flags; in PyAST_CompileObject()
332 c.c_future->ff_features = merged; in PyAST_CompileObject()
342 c.c_st = PySymtable_BuildObject(mod, filename, c.c_future); in PyAST_CompileObject()
392 if (c->c_future) in compiler_free()
393 PyObject_Free(c->c_future); in compiler_free()
1744 if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) { in compiler_visit_argannotation()
2869 if (s->lineno > c->c_future->ff_lineno && s->v.ImportFrom.module && in compiler_from_import()
4718 if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) { in compiler_annassign()