mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
Issue #25923: Added more const qualifiers to signatures of static and private functions.
This commit is contained in:
parent
2d06e84455
commit
ef1585eb9a
60 changed files with 210 additions and 191 deletions
|
@ -738,7 +738,7 @@ handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
|
|||
}
|
||||
|
||||
static void
|
||||
debug_cycle(char *msg, PyObject *op)
|
||||
debug_cycle(const char *msg, PyObject *op)
|
||||
{
|
||||
PySys_FormatStderr("gc: %s <%s %p>\n",
|
||||
msg, Py_TYPE(op)->tp_name, op);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue