Comment 3 for bug 271939

Revision history for this message
John A Meinel (jameinel) wrote :

The important header is:
#if PY_VERSION_HEX < 0x02050000
  typedef int Py_ssize_t;
  #define PY_SSIZE_T_MAX INT_MAX
  #define PY_SSIZE_T_MIN INT_MIN
  #define PyInt_FromSsize_t(z) PyInt_FromLong(z)
  #define PyInt_AsSsize_t(o) PyInt_AsLong(o)
#endif