7 /***********************************************************
8 Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
13 Permission to use, copy, modify, and distribute this software and its
14 documentation for any purpose and without fee is hereby granted,
15 provided that the above copyright notice appear in all copies and that
16 both that copyright notice and this permission notice appear in
17 supporting documentation, and that the names of Stichting Mathematisch
18 Centrum or CWI not be used in advertising or publicity pertaining to
19 distribution of the software without specific, written prior permission.
21 STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
22 THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
23 FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
24 FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
25 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
26 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
27 OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
29 ******************************************************************/
31 /* Integer object interface */
34 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
36 PyIntObject represents a (long) integer. This is an immutable object;
37 an integer cannot change its value after creation.
39 There are functions to create new integer objects, to test an object
40 for integer-ness, and to get the integer value. The latter functions
41 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
42 None of the functions should be applied to nil objects.
44 The type PyIntObject is (unfortunately) exposed here so we can declare
45 _Py_TrueStruct and _Py_ZeroStruct below; don't use this.
53 extern DL_IMPORT(PyTypeObject
) PyInt_Type
;
55 #define PyInt_Check(op) ((op)->ob_type == &PyInt_Type)
57 extern PyObject
*PyInt_FromLong
Py_PROTO((long));
58 extern long PyInt_AsLong
Py_PROTO((PyObject
*));
62 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
64 False and True are special intobjects used by Boolean expressions.
65 All values of type Boolean must point to either of these; but in
66 contexts where integers are required they are integers (valued 0 and 1).
67 Hope these macros don't conflict with other people's.
69 Don't forget to apply Py_INCREF() when returning True or False!!!
72 extern DL_IMPORT(PyIntObject
) _Py_ZeroStruct
, _Py_TrueStruct
; /* Don't use these directly */
74 #define Py_False ((PyObject *) &_Py_ZeroStruct)
75 #define Py_True ((PyObject *) &_Py_TrueStruct)
77 /* Macro, trading safety for speed */
78 #define PyInt_AS_LONG(op) ((op)->ob_ival)
83 #endif /* !Py_INTOBJECT_H */