mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +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
|
@ -2187,7 +2187,7 @@ error:
|
|||
}
|
||||
|
||||
static int
|
||||
write_utf8(PicklerObject *self, char *data, Py_ssize_t size)
|
||||
write_utf8(PicklerObject *self, const char *data, Py_ssize_t size)
|
||||
{
|
||||
char header[9];
|
||||
Py_ssize_t len;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue