home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / !!!python!!! / BeOpen-Python-2.0.exe / INTOBJECT.H < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-01  |  2.3 KB  |  69 lines

  1.  
  2. /* Integer object interface */
  3.  
  4. /*
  5. PyIntObject represents a (long) integer.  This is an immutable object;
  6. an integer cannot change its value after creation.
  7.  
  8. There are functions to create new integer objects, to test an object
  9. for integer-ness, and to get the integer value.  The latter functions
  10. returns -1 and sets errno to EBADF if the object is not an PyIntObject.
  11. None of the functions should be applied to nil objects.
  12.  
  13. The type PyIntObject is (unfortunately) exposed here so we can declare
  14. _Py_TrueStruct and _Py_ZeroStruct below; don't use this.
  15. */
  16.  
  17. #ifndef Py_INTOBJECT_H
  18. #define Py_INTOBJECT_H
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22.  
  23. typedef struct {
  24.     PyObject_HEAD
  25.     long ob_ival;
  26. } PyIntObject;
  27.  
  28. extern DL_IMPORT(PyTypeObject) PyInt_Type;
  29.  
  30. #define PyInt_Check(op) ((op)->ob_type == &PyInt_Type)
  31.  
  32. extern DL_IMPORT(PyObject *) PyInt_FromString(char*, char**, int);
  33. extern DL_IMPORT(PyObject *) PyInt_FromUnicode(Py_UNICODE*, int, int);
  34. extern DL_IMPORT(PyObject *) PyInt_FromLong(long);
  35. extern DL_IMPORT(long) PyInt_AsLong(PyObject *);
  36. extern DL_IMPORT(long) PyInt_GetMax(void);
  37.  
  38.  
  39. /*
  40. False and True are special intobjects used by Boolean expressions.
  41. All values of type Boolean must point to either of these; but in
  42. contexts where integers are required they are integers (valued 0 and 1).
  43. Hope these macros don't conflict with other people's.
  44.  
  45. Don't forget to apply Py_INCREF() when returning True or False!!!
  46. */
  47.  
  48. extern DL_IMPORT(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct; /* Don't use these directly */
  49.  
  50. #define Py_False ((PyObject *) &_Py_ZeroStruct)
  51. #define Py_True ((PyObject *) &_Py_TrueStruct)
  52.  
  53. /* Macro, trading safety for speed */
  54. #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
  55.  
  56. /* These aren't really part of the Int object, but they're handy; the protos
  57.  * are necessary for systems that need the magic of DL_IMPORT and that want
  58.  * to have stropmodule as a dynamically loaded module instead of building it
  59.  * into the main Python shared library/DLL.  Guido thinks I'm weird for
  60.  * building it this way.  :-)  [cjh]
  61.  */
  62. extern DL_IMPORT(unsigned long) PyOS_strtoul(char *, char **, int);
  63. extern DL_IMPORT(long) PyOS_strtol(char *, char **, int);
  64.  
  65. #ifdef __cplusplus
  66. }
  67. #endif
  68. #endif /* !Py_INTOBJECT_H */
  69.