mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +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
|
@ -97,7 +97,7 @@ PySys_SetObject(const char *name, PyObject *v)
|
|||
}
|
||||
|
||||
static PyObject *
|
||||
sys_breakpointhook(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *keywords)
|
||||
sys_breakpointhook(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *keywords)
|
||||
{
|
||||
assert(!PyErr_Occurred());
|
||||
const char *envar = Py_GETENV("PYTHONBREAKPOINT");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue