Bug report
Bug description:
whence+1 could lead to overflow for large value of whence. I think changing type from int to Py_ssize_t could fix the problem (remain is input parameter):
static int
pmerge(PyObject *acc, PyObject **to_merge, Py_ssize_t to_merge_size)
{
...
remain = PyMem_New(Py_ssize_t, to_merge_size);
CPython versions tested on:
3.11
Operating systems tested on:
Linux
Linked PRs