diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-05-10 08:08:56 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-05-10 08:08:56 (GMT) |
commit | e0a2b72e61a474dceb948be57cb2983f70ab07fb (patch) | |
tree | c3b566e210699b00932039c734bfeb74e24f06f9 /Python/codecs.c | |
parent | cf7925dfc61d770c58153fd96170192e11cf8f39 (diff) | |
download | cpython-e0a2b72e61a474dceb948be57cb2983f70ab07fb.zip cpython-e0a2b72e61a474dceb948be57cb2983f70ab07fb.tar.gz cpython-e0a2b72e61a474dceb948be57cb2983f70ab07fb.tar.bz2 |
Rename the surrogates error handler to surrogatepass.
Diffstat (limited to 'Python/codecs.c')
-rw-r--r-- | Python/codecs.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Python/codecs.c b/Python/codecs.c index 7e3ff8a..cd6b7f0 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -751,7 +751,7 @@ PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc) /* This handler is declared static until someone demonstrates a need to call it directly. */ static PyObject * -PyCodec_SurrogateErrors(PyObject *exc) +PyCodec_SurrogatePassErrors(PyObject *exc) { PyObject *restuple; PyObject *object; @@ -935,9 +935,9 @@ static PyObject *backslashreplace_errors(PyObject *self, PyObject *exc) return PyCodec_BackslashReplaceErrors(exc); } -static PyObject *surrogates_errors(PyObject *self, PyObject *exc) +static PyObject *surrogatepass_errors(PyObject *self, PyObject *exc) { - return PyCodec_SurrogateErrors(exc); + return PyCodec_SurrogatePassErrors(exc); } static PyObject *utf8b_errors(PyObject *self, PyObject *exc) @@ -993,10 +993,10 @@ static int _PyCodecRegistry_Init(void) } }, { - "surrogates", + "surrogatepass", { - "surrogates", - surrogates_errors, + "surrogatepass", + surrogatepass_errors, METH_O } }, |