summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2004-07-23 14:49:52 (GMT)
committerThomas Heller <theller@ctypes.org>2004-07-23 14:49:52 (GMT)
commitfe0808382b4bae113ad254ed1d984e94294beea0 (patch)
treea9672ddd7b5e630e3b30005b32544e405d5047f4 /Doc
parent5ae638c78e46da78443ef312b128000f42606dc5 (diff)
downloadcpython-fe0808382b4bae113ad254ed1d984e94294beea0.zip
cpython-fe0808382b4bae113ad254ed1d984e94294beea0.tar.gz
cpython-fe0808382b4bae113ad254ed1d984e94294beea0.tar.bz2
Fix an uncorrect function prototype.
Will backport to release23-maint. BTW: Shouldn't it read PY_LONG_LONG instead of 'long long' ?
Diffstat (limited to 'Doc')
-rw-r--r--Doc/api/concrete.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex
index 023b8f2..726634d 100644
--- a/Doc/api/concrete.tex
+++ b/Doc/api/concrete.tex
@@ -179,7 +179,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.