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 3a8f510 commit d3dfd0eCopy full SHA for d3dfd0e
1 file changed
Python/ceval.c
@@ -2256,7 +2256,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
2256
2257
TARGET(LOAD_CLASSDEREF) {
2258
PyObject *name, *value, *locals = f->f_locals;
2259
- int idx;
+ Py_ssize_t idx;
2260
assert(locals);
2261
assert(oparg >= PyTuple_GET_SIZE(co->co_cellvars));
2262
idx = oparg - PyTuple_GET_SIZE(co->co_cellvars);
0 commit comments