diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-25 13:57:17 +0200 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-25 13:57:17 +0200 |
| commit | 166ebc4e5dd09f005c6144b7568da83728b8b893 (patch) | |
| tree | f6b9deb3cb72095ef55bcef31637f4aaafe95248 /Include/codecs.h | |
| parent | 6cecf68c7b51390429a2488846b1d0c29581987a (diff) | |
| download | cpython-git-166ebc4e5dd09f005c6144b7568da83728b8b893.tar.gz | |
Issue #19676: Added the "namereplace" error handler.
Diffstat (limited to 'Include/codecs.h')
| -rw-r--r-- | Include/codecs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/codecs.h b/Include/codecs.h index b3088e4902..466913540f 100644 --- a/Include/codecs.h +++ b/Include/codecs.h @@ -225,6 +225,9 @@ PyAPI_FUNC(PyObject *) PyCodec_XMLCharRefReplaceErrors(PyObject *exc); /* replace the unicode encode error with backslash escapes (\x, \u and \U) */ PyAPI_FUNC(PyObject *) PyCodec_BackslashReplaceErrors(PyObject *exc); +/* replace the unicode encode error with backslash escapes (\N, \x, \u and \U) */ +PyAPI_FUNC(PyObject *) PyCodec_NameReplaceErrors(PyObject *exc); + PyAPI_DATA(const char *) Py_hexdigits; #ifdef __cplusplus |
