https://github.com/python/cpython/commit/54110e20e0ed0584e159c42d9f57516c1a3b997a commit: 54110e20e0ed0584e159c42d9f57516c1a3b997a branch: main author: Stan Ulbrych <[email protected]> committer: ZeroIntensity <[email protected]> date: 2025-11-06T08:48:42-05:00 summary:
gh-141004: Document `Py_hexdigits` (GH-141059) Co-authored-by: Victor Stinner <[email protected]> files: M Doc/c-api/codec.rst diff --git a/Doc/c-api/codec.rst b/Doc/c-api/codec.rst index 08a99245ad6528..35ee048bd5fa9f 100644 --- a/Doc/c-api/codec.rst +++ b/Doc/c-api/codec.rst @@ -129,3 +129,13 @@ Registry API for Unicode encoding error handlers Replace the unicode encode error with ``\N{...}`` escapes. .. versionadded:: 3.5 + + +Codec utility variables +----------------------- + +.. c:var:: const char *Py_hexdigits + + A string constant containing the lowercase hexadecimal digits: ``"0123456789abcdef"``. + + .. versionadded:: 3.3 _______________________________________________ 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]
