mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +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
|
@ -659,7 +659,7 @@ _bufferedreader_raw_read(buffered *self, char *start, Py_ssize_t len);
|
|||
|
||||
/* Sets the current error to BlockingIOError */
|
||||
static void
|
||||
_set_BlockingIOError(char *msg, Py_ssize_t written)
|
||||
_set_BlockingIOError(const char *msg, Py_ssize_t written)
|
||||
{
|
||||
PyObject *err;
|
||||
PyErr_Clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue