From: Thomas Heller Date: Fri, 23 Jul 2004 14:51:06 +0000 (+0000) Subject: Fix an uncorrect function prototype. X-Git-Tag: v2.3.5c1~157 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=717d9ff9fb4c7ec32719e23f7761d5abb4d62d1c;p=thirdparty%2FPython%2Fcpython.git Fix an uncorrect function prototype. Backported from trunk. --- diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 308c4165db3a..0d58b59003e2 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -175,7 +175,7 @@ There is no \cfunction{PyNone_Check()} function for the same reason. \versionadded{2.3} \end{cfuncdesc} -\begin{cfuncdesc}{unsigned long}{PyInt_AsUnsignedLongLongMask}{PyObject *io} +\begin{cfuncdesc}{unsigned long long}{PyInt_AsUnsignedLongLongMask}{PyObject *io} Will first attempt to cast the object to a \ctype{PyIntObject} or \ctype{PyLongObject}, if it is not already one, and then return its value as unsigned long long, without checking for overflow.