Issue #15368: fixing variable typo.
This commit is contained in:
parent
2ca6315d15
commit
f69e24e3c6
|
@ -387,7 +387,7 @@ dictbytype(PyObject *src, int scope_type, int flag, int offset)
|
||||||
Py_DECREF(sorted_keys);
|
Py_DECREF(sorted_keys);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
num_keys = PyList_GET_SIZE(src);
|
num_keys = PyList_GET_SIZE(sorted_keys);
|
||||||
|
|
||||||
for (key_i = 0; key_i < num_keys; key_i++) {
|
for (key_i = 0; key_i < num_keys; key_i++) {
|
||||||
/* XXX this should probably be a macro in symtable.h */
|
/* XXX this should probably be a macro in symtable.h */
|
||||||
|
|
Loading…
Reference in New Issue