[Python-Dev] compiling python2.5 on linux under wine
Luke Kenneth Casson Leighton
lkcl at lkcl.net
Thu Jan 8 09:57:03 EST 2009
> anyway, i'm floundering around a bit and making a bit of a mess of the
> code, looking for where LONG_MAX is messing up.
fixed with this:
PyObject *
PyInt_FromSsize_t(Py_ssize_t ival)
{
if ((long)ival >= (long)LONG_MIN && (long)ival <= (long)LONG_MAX)
{
return PyInt_FromLong((long)ival);
}
return _PyLong_FromSsize_t(ival);
}
raised as http://bugs.python.org/issue4880
next bug: distutils.sysconfig.get_config_var('srcdir') is returning None (!!)
More information about the Python-list
mailing list