diff options
author | Fred Drake <fdrake@acm.org> | 2003-04-23 20:38:41 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-04-23 20:38:41 +0000 |
commit | c22b2999f6b4931dcc4f618292064ee62231d163 (patch) | |
tree | f8d3371fbbea70528cc5449ae2cdb125e5138217 | |
parent | 54a234a566be5ddb595f847eaa005f86e3f8ea03 (diff) | |
download | cpython-git-c22b2999f6b4931dcc4f618292064ee62231d163.tar.gz |
fix some markup errors
-rw-r--r-- | Doc/api/concrete.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index cc3b2abf8c..f8cbc2834b 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -170,14 +170,14 @@ There is no \cfunction{PyNone_Check()} function for the same reason. \begin{cfuncdesc}{unsigned long}{PyInt_AsUnsignedLongMask}{PyObject *io} Will first attempt to cast the object to a \ctype{PyIntObject} or - \ctypes{PyLongObject}, if it is not already one, and then return its + \ctype{PyLongObject}, if it is not already one, and then return its value as unsigned long. This function does not check for overflow. \versionadded{2.3} \end{cfuncdesc} \begin{cfuncdesc}{unsigned long}{PyInt_AsUnsignedLongLongMask}{PyObject *io} Will first attempt to cast the object to a \ctype{PyIntObject} or - \ctypes{PyLongObject}, if it is not already one, and then return its + \ctype{PyLongObject}, if it is not already one, and then return its value as unsigned long long, without checking for overflow. \versionadded{2.3} \end{cfuncdesc} |