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 /Doc/c-api | |
| parent | 6cecf68c7b51390429a2488846b1d0c29581987a (diff) | |
| download | cpython-git-166ebc4e5dd09f005c6144b7568da83728b8b893.tar.gz | |
Issue #19676: Added the "namereplace" error handler.
Diffstat (limited to 'Doc/c-api')
| -rw-r--r-- | Doc/c-api/codec.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/c-api/codec.rst b/Doc/c-api/codec.rst index 83252afbb7..5bb56e37ec 100644 --- a/Doc/c-api/codec.rst +++ b/Doc/c-api/codec.rst @@ -116,3 +116,8 @@ Registry API for Unicode encoding error handlers Replace the unicode encode error with backslash escapes (``\x``, ``\u`` and ``\U``). +.. c:function:: PyObject* PyCodec_NameReplaceErrors(PyObject *exc) + + Replace the unicode encode error with `\N{...}` escapes. + + .. versionadded: 3.4 |
