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 38a429f commit 2caf56fCopy full SHA for 2caf56f
Python/bytecodes.c
@@ -3253,12 +3253,9 @@ dummy_func(
3253
DISPATCH();
3254
}
3255
#else
3256
- intptr_t i = PyStackRef_UntagInt(null_or_index);
3257
- assert(i < PyList_GET_SIZE(list_o));
3258
- next = PyStackRef_FromPyObjectNew(PyList_GET_ITEM(list_o, i));
+ next = PyStackRef_FromPyObjectNew(PyList_GET_ITEM(list_o, PyStackRef_UntagInt(null_or_index)));
3259
#endif
3260
null_or_index = PyStackRef_IncrementTaggedInt(null_or_index);
3261
- assert(PyStackRef_UntagInt(null_or_index) == i + 1);
3262
3263
3264
// Only used by Tier 2
0 commit comments