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 ezio.melotti
Recipients ezio.melotti, zuo
Date 2010-01-26.19:01:15
SpamBayes Score 2.9065973e-08
Marked as misclassified No
Message-id <1264532477.26.0.951579314954.issue7788@psf.upfronthosting.co.za>
In-reply-to
Content
This is what I get on trunk:
Python 2.7a2+ (trunk:77754:77755, Jan 26 2010, 20:16:49)
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from sys import maxint
>>> del range(10)[::maxint]
>>> del range(10)[:-9:maxint]
>>> del range(10)[-8:8:maxint-2]
>>> del range(10)[9::maxint]
Segmentation fault

Confirmed on py3k too.
History
Date User Action Args
2010-01-26 19:01:17ezio.melottisetrecipients: + ezio.melotti, zuo
2010-01-26 19:01:17ezio.melottisetmessageid: <1264532477.26.0.951579314954.issue7788@psf.upfronthosting.co.za>
2010-01-26 19:01:15ezio.melottilinkissue7788 messages
2010-01-26 19:01:15ezio.melotticreate