mirror of https://github.com/python/cpython
Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failure
This commit is contained in:
parent
095d99ffff
commit
e901d1fbdf
|
@ -1910,7 +1910,8 @@ Py_ReprEnter(PyObject *obj)
|
||||||
if (PyList_GET_ITEM(list, i) == obj)
|
if (PyList_GET_ITEM(list, i) == obj)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
PyList_Append(list, obj);
|
if (PyList_Append(list, obj) < 0)
|
||||||
|
return -1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue