~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/python-compat.h

  • Committer: John Arbash Meinel
  • Date: 2009-10-20 19:46:46 UTC
  • mfrom: (4759 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4771.
  • Revision ID: john@arbash-meinel.com-20091020194646-wnqpd15qs19y28z7
Merge bzr.dev 4759, bringing in static_tuple and streaming improvements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
/* http://www.python.org/dev/peps/pep-0353/ */
29
29
#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
30
30
    typedef int Py_ssize_t;
 
31
    typedef Py_ssize_t (*lenfunc)(PyObject *);
 
32
    typedef PyObject * (*ssizeargfunc)(PyObject *, Py_ssize_t);
 
33
    typedef PyObject * (*ssizessizeargfunc)(PyObject *, Py_ssize_t, Py_ssize_t);
31
34
    #define PY_SSIZE_T_MAX INT_MAX
32
35
    #define PY_SSIZE_T_MIN INT_MIN
33
36
    #define PyInt_FromSsize_t(z) PyInt_FromLong(z)
77
80
#ifndef Py_TYPE
78
81
#  define Py_TYPE(o) ((o)->ob_type)
79
82
#endif
 
83
#ifndef Py_REFCNT
 
84
#  define Py_REFCNT(o) ((o)->ob_refcnt)
 
85
#endif
80
86
 
81
87
#endif /* _BZR_PYTHON_COMPAT_H */