2 #include "Python-ast.h"
10 #define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
13 future_check_features(PyFutureFeatures
*ff
, stmt_ty s
, const char *filename
)
18 assert(s
->kind
== ImportFrom_kind
);
20 names
= s
->v
.ImportFrom
.names
;
21 for (i
= 0; i
< asdl_seq_LEN(names
); i
++) {
22 alias_ty name
= asdl_seq_GET(names
, i
);
23 const char *feature
= PyString_AsString(name
->name
);
26 if (strcmp(feature
, FUTURE_NESTED_SCOPES
) == 0) {
28 } else if (strcmp(feature
, FUTURE_GENERATORS
) == 0) {
30 } else if (strcmp(feature
, FUTURE_DIVISION
) == 0) {
31 ff
->ff_features
|= CO_FUTURE_DIVISION
;
32 } else if (strcmp(feature
, FUTURE_ABSOLUTE_IMPORT
) == 0) {
33 ff
->ff_features
|= CO_FUTURE_ABSOLUTE_IMPORT
;
34 } else if (strcmp(feature
, FUTURE_WITH_STATEMENT
) == 0) {
35 ff
->ff_features
|= CO_FUTURE_WITH_STATEMENT
;
36 } else if (strcmp(feature
, "braces") == 0) {
37 PyErr_SetString(PyExc_SyntaxError
,
39 PyErr_SyntaxLocation(filename
, s
->lineno
);
42 PyErr_Format(PyExc_SyntaxError
,
43 UNDEFINED_FUTURE_FEATURE
, feature
);
44 PyErr_SyntaxLocation(filename
, s
->lineno
);
52 future_parse(PyFutureFeatures
*ff
, mod_ty mod
, const char *filename
)
54 int i
, found_docstring
= 0, done
= 0, prev_line
= 0;
56 static PyObject
*future
;
58 future
= PyString_InternFromString("__future__");
63 if (!(mod
->kind
== Module_kind
|| mod
->kind
== Interactive_kind
))
66 /* A subsequent pass will detect future imports that don't
67 appear at the beginning of the file. There's one case,
68 however, that is easier to handl here: A series of imports
69 joined by semi-colons, where the first import is a future
70 statement but some subsequent import has the future form
71 but is preceded by a regular import.
75 for (i
= 0; i
< asdl_seq_LEN(mod
->v
.Module
.body
); i
++) {
76 stmt_ty s
= asdl_seq_GET(mod
->v
.Module
.body
, i
);
78 if (done
&& s
->lineno
> prev_line
)
80 prev_line
= s
->lineno
;
82 /* The tests below will return from this function unless it is
83 still possible to find a future statement. The only things
84 that can precede a future statement are another future
85 statement and a doc string.
88 if (s
->kind
== ImportFrom_kind
) {
89 if (s
->v
.ImportFrom
.module
== future
) {
91 PyErr_SetString(PyExc_SyntaxError
,
93 PyErr_SyntaxLocation(filename
,
97 if (!future_check_features(ff
, s
, filename
))
99 ff
->ff_lineno
= s
->lineno
;
104 else if (s
->kind
== Expr_kind
&& !found_docstring
) {
105 expr_ty e
= s
->v
.Expr
.value
;
106 if (e
->kind
!= Str_kind
)
119 PyFuture_FromAST(mod_ty mod
, const char *filename
)
121 PyFutureFeatures
*ff
;
123 ff
= (PyFutureFeatures
*)PyObject_Malloc(sizeof(PyFutureFeatures
));
129 if (!future_parse(ff
, mod
, filename
)) {