https://github.com/python/cpython/commit/5ffb89420c3fb41cb6cc795c9f983a8b5cc207ab commit: 5ffb89420c3fb41cb6cc795c9f983a8b5cc207ab branch: main author: Stan Ulbrych <[email protected]> committer: vstinner <[email protected]> date: 2025-04-22T14:16:51+02:00 summary:
gh-46236: Add Py_UNICODE_REPLACEMENT_CHARACTER doc (#132706) Co-authored-by: Victor Stinner <[email protected]> files: M Doc/c-api/unicode.rst diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 6a20b0cd8ddae6..1b426ff3841ca4 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1026,6 +1026,17 @@ generic ones are documented for simplicity. Generic Codecs """""""""""""" +The following macro is provided: + + +.. c:macro:: Py_UNICODE_REPLACEMENT_CHARACTER + + The Unicode code point ``U+FFFD`` (replacement character). + + This Unicode character is used as the replacement character during + decoding if the *errors* argument is set to "replace". + + These are the generic codec APIs: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
