This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients loewis
Date 2010-10-23.18:37:50
SpamBayes Score 0.0073602726
Marked as misclassified No
Message-id <1287859071.54.0.617398147143.issue10182@psf.upfronthosting.co.za>
In-reply-to
Content
_sre.c:match_start currently uses Py_BuildValue("i") to return the start index, which itself is of type Py_ssize_t. This will get truncated on x64 Windows if the start is > 2**31. PyInt_FromSsize_t should be used instead. Other usages of Py_BuildValue should be reviewed as well.
History
Date User Action Args
2010-10-23 18:37:51loewissetrecipients: + loewis
2010-10-23 18:37:51loewissetmessageid: <1287859071.54.0.617398147143.issue10182@psf.upfronthosting.co.za>
2010-10-23 18:37:50loewislinkissue10182 messages
2010-10-23 18:37:50loewiscreate