mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Fix also return type for few other functions (clear, releasebuffer).
This commit is contained in:
parent
1005c84535
commit
d4f9cf5545
25 changed files with 128 additions and 122 deletions
|
|
@ -108,7 +108,7 @@ call_error_callback(PyObject *errors, PyObject *exc)
|
|||
}
|
||||
|
||||
static PyObject *
|
||||
codecctx_errors_get(MultibyteStatefulCodecContext *self)
|
||||
codecctx_errors_get(MultibyteStatefulCodecContext *self, void *Py_UNUSED(ignored))
|
||||
{
|
||||
const char *errors;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue