Searched refs:surrogatepass (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | codecs.rst | 359 |``'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/ |
D | unicodeobject.c | 5161 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/ |
D | 3.8.0a4.rst | 158 Fixed support of the surrogatepass error handler in the UTF-8 incremental
|
D | 3.5.0a1.rst | 245 and "surrogatepass" error handlers. 3596 Disallowed the surrogatepass error handler for non UTF-\* encodings.
|
D | 3.6.0a1.rst | 731 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. Patch
|
D | 3.9.0a1.rst | 831 Improved support of the surrogatepass error handler in the UTF-8 and UTF-16
|
/external/python/cpython3/Doc/using/ |
D | cmdline.rst | 821 Otherwise, the new defaults 'utf-8' and 'surrogatepass' are used.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1805 ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass`` (Contributed
|
D | 3.4.rst | 420 encoding and decoding unless the ``surrogatepass`` error handler is used,
|
/external/python/cpython3/Misc/ |
D | HISTORY | 989 "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.
|