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 46aae19 commit d8fe7abCopy full SHA for d8fe7ab
1 file changed
Python/symtable.c
@@ -432,8 +432,9 @@ analyze_cells(PyObject *scope, PyObject *free)
432
if (!w)
433
return 0;
434
while (PyDict_Next(scope, &pos, &name, &v)) {
435
+ long flags;
436
assert(PyInt_Check(v));
- long flags = PyInt_AS_LONG(v);
437
+ flags = PyInt_AS_LONG(v);
438
if (flags != LOCAL)
439
continue;
440
if (!PyDict_GetItem(free, name))
0 commit comments