Home
last modified time | relevance | path

Searched refs:surrogatepass (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Doc/library/
Dcodecs.rst366 |``'surrogatepass'``| utf-8, utf-16, utf-32, | Allow encoding and decoding of surrogate |
372 The ``'surrogateescape'`` and ``'surrogatepass'`` error handlers.
375 The ``'surrogatepass'`` error handlers now works with utf-16\* and utf-32\* codecs.
/third_party/python/Doc/c-api/
Dinit_config.rst709 On Windows: use ``"surrogatepass"`` by default, or ``"replace"`` if
719 * ``"surrogatepass"`` (only supported with the UTF-8 encoding)
Dinit.rst155 handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler,
/third_party/python/Objects/
Dunicodeobject.c5359 int surrogatepass = 0; in _Py_DecodeUTF8Ex() local
5368 surrogatepass = 1; in _Py_DecodeUTF8Ex()
5415 if (surrogatepass in _Py_DecodeUTF8Ex()
5498 int surrogatepass = 0; in _Py_EncodeUTF8Ex() local
5507 surrogatepass = 1; in _Py_EncodeUTF8Ex()
5553 else if (Py_UNICODE_IS_SURROGATE(ch) && !surrogatepass) { in _Py_EncodeUTF8Ex()
/third_party/python/Misc/NEWS.d/
D3.8.0a4.rst158 Fixed support of the surrogatepass error handler in the UTF-8 incremental
D3.5.0a1.rst245 and "surrogatepass" error handlers.
3596 Disallowed the surrogatepass error handler for non UTF-\* encodings.
D3.6.0a1.rst731 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. Patch
D3.9.0a1.rst831 Improved support of the surrogatepass error handler in the UTF-8 and UTF-16
/third_party/python/Doc/using/
Dcmdline.rst835 'surrogatepass' are used.
/third_party/python/Doc/whatsnew/
D3.6.rst1805 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass`` (Contributed
D3.4.rst420 encoding and decoding unless the ``surrogatepass`` error handler is used,
/third_party/python/Misc/
DHISTORY989 "xmlcharrefreplace", and "surrogatepass" error handlers.
3230 byte sequences that correspond to surrogate code points. The surrogatepass
4638 - Issue #16336: fix input checking in the surrogatepass error handler.
13511 message using surrogatepass error handler to support surrogates in the
13576 - Issue #8383: pickle and pickletools use surrogatepass error handler when
14858 - Issue #3672: Reject surrogates in utf-8 codec; add surrogatepass error handler.