mirror of
https://github.com/python/cpython.git
synced 2025-08-28 04:35:02 +00:00
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
This commit is contained in:
parent
3325a6780c
commit
a5552f023e
88 changed files with 669 additions and 662 deletions
|
@ -9835,7 +9835,7 @@ PyUnicode_Join(PyObject *separator, PyObject *seq)
|
|||
}
|
||||
|
||||
PyObject *
|
||||
_PyUnicode_JoinArray(PyObject *separator, PyObject **items, Py_ssize_t seqlen)
|
||||
_PyUnicode_JoinArray(PyObject *separator, PyObject *const *items, Py_ssize_t seqlen)
|
||||
{
|
||||
PyObject *res = NULL; /* the result */
|
||||
PyObject *sep = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue