Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a3939f commit 198457aCopy full SHA for 198457a
1 file changed
Python/future.c
@@ -19,7 +19,7 @@ future_check_features(PyFutureFeatures *ff, node *n, char *filename)
19
20
REQ(n, import_stmt); /* must by from __future__ import ... */
21
22
- for (i = 3; i < NCH(n); ++i) {
+ for (i = 3; i < NCH(n); i += 2) {
23
ch = CHILD(n, i);
24
if (TYPE(ch) == STAR) {
25
PyErr_SetString(PyExc_SyntaxError,
0 commit comments