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 b6c8727 commit 9408400Copy full SHA for 9408400
1 file changed
Objects/tupleobject.c
@@ -207,7 +207,6 @@ tuple_alloc_2(void)
207
{
208
Py_ssize_t size = 2;
209
Py_ssize_t index = size - 1;
210
- assert(index < PyTuple_MAXSAVESIZE);
211
PyTupleObject *result = _Py_FREELIST_POP(PyTupleObject, tuples[index]);
212
if (result == NULL) {
213
result = PyObject_GC_NewVar(PyTupleObject, &PyTuple_Type, size);
0 commit comments