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 c1f213e commit b15ec09Copy full SHA for b15ec09
1 file changed
Python/future.c
@@ -13,15 +13,14 @@ static int
13
future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename)
14
{
15
int i;
16
- const char *feature;
17
asdl_seq *names;
18
19
assert(s->kind == ImportFrom_kind);
20
21
names = s->v.ImportFrom.names;
22
for (i = 0; i < asdl_seq_LEN(names); i++) {
23
alias_ty name = asdl_seq_GET(names, i);
24
- feature = PyString_AsString(name->name);
+ const char *feature = PyString_AsString(name->name);
25
if (!feature)
26
return 0;
27
if (strcmp(feature, FUTURE_NESTED_SCOPES) == 0) {
0 commit comments