SF bug #1082944: Incorrect docs for PyUnicode_TailMatch

* Note correct return type is int.
* Note that -1 returned on failure.
This commit is contained in:
Raymond Hettinger 2004-12-10 17:12:32 +00:00
parent 7f06187d31
commit 8ef9b3e527
1 changed files with 2 additions and 1 deletions

View File

@ -1449,7 +1449,7 @@ They all return \NULL{} or \code{-1} if an exception occurs.
resulting Unicode string.
\end{cfuncdesc}
\begin{cfuncdesc}{PyObject*}{PyUnicode_Tailmatch}{PyObject *str,
\begin{cfuncdesc}{int}{PyUnicode_Tailmatch}{PyObject *str,
PyObject *substr,
int start,
int end,
@ -1457,6 +1457,7 @@ They all return \NULL{} or \code{-1} if an exception occurs.
Return 1 if \var{substr} matches \var{str}[\var{start}:\var{end}] at
the given tail end (\var{direction} == -1 means to do a prefix
match, \var{direction} == 1 a suffix match), 0 otherwise.
Returns \code{-1} if an error occurred.
\end{cfuncdesc}
\begin{cfuncdesc}{int}{PyUnicode_Find}{PyObject *str,