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 mark.dickinson
Recipients ezio.melotti, flox, mark.dickinson, vstinner, zuo
Date 2010-01-26.19:51:26
SpamBayes Score 0.041651346
Marked as misclassified No
Message-id <1264535489.06.0.538890408253.issue7788@psf.upfronthosting.co.za>
In-reply-to
Content
There's a suspicious looking test in list_ass_subscript in Objects/listobject.c:

if (cur + step >= Py_SIZE(self)) {
	lim = Py_SIZE(self) - cur - 1;
}

I think what's happening here is that cur + step is overflowing, so that the test fails.
History
Date User Action Args
2010-01-26 19:51:29mark.dickinsonsetrecipients: + mark.dickinson, vstinner, ezio.melotti, zuo, flox
2010-01-26 19:51:29mark.dickinsonsetmessageid: <1264535489.06.0.538890408253.issue7788@psf.upfronthosting.co.za>
2010-01-26 19:51:27mark.dickinsonlinkissue7788 messages
2010-01-26 19:51:26mark.dickinsoncreate