diff options
Diffstat (limited to 'Include/longobject.h')
-rw-r--r-- | Include/longobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/longobject.h b/Include/longobject.h index d4bcbad..88854a6 100644 --- a/Include/longobject.h +++ b/Include/longobject.h @@ -44,8 +44,10 @@ extern DL_IMPORT(PyTypeObject) PyLong_Type; #define PyLong_Check(op) ((op)->ob_type == &PyLong_Type) extern PyObject *PyLong_FromLong Py_PROTO((long)); +extern PyObject *PyLong_FromUnsignedLong Py_PROTO((unsigned long)); extern PyObject *PyLong_FromDouble Py_PROTO((double)); extern long PyLong_AsLong Py_PROTO((PyObject *)); +extern unsigned long PyLong_AsUnsignedLong Py_PROTO((PyObject *)); extern double PyLong_AsDouble Py_PROTO((PyObject *)); PyObject *PyLong_FromString Py_PROTO((char *, char **, int)); |