Commit aef3fb08 authored by Martin v. Löwis's avatar Martin v. Löwis

Make PyCodec_SurrogateErrors static.

parent 4ae1f261
...@@ -748,7 +748,10 @@ PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc) ...@@ -748,7 +748,10 @@ PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc)
} }
} }
PyObject *PyCodec_SurrogateErrors(PyObject *exc) /* This handler is declared static until someone demonstrates
a need to call it directly. */
static PyObject *
PyCodec_SurrogateErrors(PyObject *exc)
{ {
PyObject *restuple; PyObject *restuple;
PyObject *object; PyObject *object;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment