diff options
author | Thomas Heller <theller@ctypes.org> | 2003-04-23 19:51:05 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2003-04-23 19:51:05 (GMT) |
commit | 34d7f0927beb9fe77b71ca53f251ece13c73245b (patch) | |
tree | b2fef3c9431acd4495b33a90827b6029075d4242 | |
parent | ce07c8a9bf67b608c03c91fd7b115922ab25f51c (diff) | |
download | cpython-34d7f0927beb9fe77b71ca53f251ece13c73245b.zip cpython-34d7f0927beb9fe77b71ca53f251ece13c73245b.tar.gz cpython-34d7f0927beb9fe77b71ca53f251ece13c73245b.tar.bz2 |
Document the new functions PyInt_AsUnsignedLongMask(), PyInt_AsUnsignedLongLongMask(),
PyLong_AsUnsignedLongMask(), PyLong_AsUnsignedLongLongMask().
-rw-r--r-- | Doc/api/concrete.tex | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 48c44b1..cc3b2ab 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -168,6 +168,20 @@ There is no \cfunction{PyNone_Check()} function for the same reason. performed. \end{cfuncdesc} +\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 + 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 + value as unsigned long long, without checking for overflow. + \versionadded{2.3} +\end{cfuncdesc} + \begin{cfuncdesc}{long}{PyInt_GetMax}{} Returns the system's idea of the largest integer it can handle (\constant{LONG_MAX}\ttindex{LONG_MAX}, as defined in the system @@ -293,6 +307,18 @@ There is no \cfunction{PyNone_Check()} function for the same reason. \versionadded{2.2} \end{cfuncdesc} +\begin{cfuncdesc}{unsigned long}{PyLong_AsUnsignedLongMask}{PyObject *io} + Return a C \ctype{unsigned long} from a Python long integer, without + checking for overflow. + \versionadded{2.3} +\end{cfuncdesc} + +\begin{cfuncdesc}{unsigned long}{PyLong_AsUnsignedLongLongMask}{PyObject *io} + Return a C \ctype{unsigned long long} from a Python long integer, without + checking for overflow. + \versionadded{2.3} +\end{cfuncdesc} + \begin{cfuncdesc}{double}{PyLong_AsDouble}{PyObject *pylong} Returns a C \ctype{double} representation of the contents of \var{pylong}. If \var{pylong} cannot be approximately represented |