mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
More unconsting.
This commit is contained in:
parent
f4e6928c4d
commit
02cbf4ae4b
9 changed files with 56 additions and 62 deletions
|
@ -45,8 +45,8 @@ PyDoc_STRVAR(MultibyteCodec_StreamReader__doc__,
|
|||
PyDoc_STRVAR(MultibyteCodec_StreamWriter__doc__,
|
||||
"I.StreamWriter(stream[, errors]) -> StreamWriter instance");
|
||||
|
||||
static const char *codeckwarglist[] = {"input", "errors", NULL};
|
||||
static const char *streamkwarglist[] = {"stream", "errors", NULL};
|
||||
static char *codeckwarglist[] = {"input", "errors", NULL};
|
||||
static char *streamkwarglist[] = {"stream", "errors", NULL};
|
||||
|
||||
static PyObject *multibytecodec_encode(MultibyteCodec *,
|
||||
MultibyteCodec_State *, const Py_UNICODE **, size_t,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue