From 47fd4726a2ce8599cc397ddeae40f70eb471e868 Mon Sep 17 00:00:00 2001 From: Ammar Askar Date: Thu, 29 Jul 2021 05:10:03 -0400 Subject: bpo-43565: Document PyUnicode_KIND's return type as an unsigned int (GH-25724) --- Doc/c-api/unicode.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index ddc2346..6cb453e 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -149,7 +149,7 @@ access internal read-only data of Unicode objects: ``PyUnicode_WCHAR_KIND`` is deprecated. -.. c:function:: int PyUnicode_KIND(PyObject *o) +.. c:function:: unsigned int PyUnicode_KIND(PyObject *o) Return one of the PyUnicode kind constants (see above) that indicate how many bytes per character this Unicode object uses to store its data. *o* has to -- cgit v0.12