Searched refs:surrogatepass (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Doc/library/ |
D | codecs.rst | 366 |``'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/ |
D | init_config.rst | 709 On Windows: use ``"surrogatepass"`` by default, or ``"replace"`` if 719 * ``"surrogatepass"`` (only supported with the UTF-8 encoding)
|
D | init.rst | 155 handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler,
|
/third_party/python/Objects/ |
D | unicodeobject.c | 5359 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/ |
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
|
/third_party/python/Doc/using/ |
D | cmdline.rst | 835 'surrogatepass' are used.
|
/third_party/python/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,
|
/third_party/python/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.
|