Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/library/
Dcodecs.rst359 |``'surrogatepass'``| utf-8, utf-16, utf-32, | Allow encoding and decoding of surrogate |
365 The ``'surrogateescape'`` and ``'surrogatepass'`` error handlers.
368 The ``'surrogatepass'`` error handlers now works with utf-16\* and utf-32\* codecs.
/external/python/cpython3/Objects/
Dunicodeobject.c5161 int surrogatepass = 0; in _Py_DecodeUTF8Ex() local
5170 surrogatepass = 1; in _Py_DecodeUTF8Ex()
5217 if (surrogatepass in _Py_DecodeUTF8Ex()
5300 int surrogatepass = 0; in _Py_EncodeUTF8Ex() local
5309 surrogatepass = 1; in _Py_EncodeUTF8Ex()
5355 else if (Py_UNICODE_IS_SURROGATE(ch) && !surrogatepass) { in _Py_EncodeUTF8Ex()
/external/python/cpython3/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
/external/python/cpython3/Doc/using/
Dcmdline.rst821 Otherwise, the new defaults 'utf-8' and 'surrogatepass' are used.
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1805 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass`` (Contributed
D3.4.rst420 encoding and decoding unless the ``surrogatepass`` error handler is used,
/external/python/cpython3/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.