From 13d3aa502d305f9a92a53af561ed46d53daf1d5b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 9 Oct 2014 11:11:25 +0200 Subject: [PATCH] Closes #22580: Fix documentation of PyUnicode_Tailmatch() The result type is Py_ssize_t (and not int). --- 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 4352351ccab..24bef8ec597 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1568,7 +1568,7 @@ They all return *NULL* or ``-1`` if an exception occurs. Unicode string. -.. c:function:: int PyUnicode_Tailmatch(PyObject *str, PyObject *substr, \ +.. c:function:: Py_ssize_t PyUnicode_Tailmatch(PyObject *str, PyObject *substr, \ Py_ssize_t start, Py_ssize_t end, int direction) Return 1 if *substr* matches ``str[start:end]`` at the given tail end