~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/python-compat.h

  • Committer: Danny van Heumen
  • Date: 2010-03-09 21:42:11 UTC
  • mto: (4634.139.5 2.0)
  • mto: This revision was merged to the branch mainline in revision 5160.
  • Revision ID: danny@dannyvanheumen.nl-20100309214211-iqh42x6qcikgd9p3
Reverted now-useless TODO list.

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);
34
31
    #define PY_SSIZE_T_MAX INT_MAX
35
32
    #define PY_SSIZE_T_MIN INT_MIN
36
33
    #define PyInt_FromSsize_t(z) PyInt_FromLong(z)
74
71
 
75
72
#ifdef _MSC_VER
76
73
#define  snprintf  _snprintf
77
 
/* gcc (mingw32) has strtoll, while the MSVC compiler uses _strtoi64 */
78
 
#define strtoll _strtoi64
79
 
#define strtoull _strtoui64
80
 
#endif
81
 
 
82
 
/* Introduced in Python 2.6 */
83
 
#ifndef Py_TYPE
84
 
#  define Py_TYPE(o) ((o)->ob_type)
85
 
#endif
86
 
#ifndef Py_REFCNT
87
 
#  define Py_REFCNT(o) ((o)->ob_refcnt)
88
74
#endif
89
75
 
90
76
#endif /* _BZR_PYTHON_COMPAT_H */