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 mwh
Recipients
Date 2000-07-27.21:31:38
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
this 10 minute hack adds support for "extended slicing" to lists, by which I mean things like:

>>> range(100)[23:60:12]
[23, 35, 47, 59]

todo:
find out if this is the approved approach
add support for tuples
write docs, testsuite (make test passes as is, but should be extended).
History
Date User Action Args
2007-08-23 15:00:47adminlinkissue400998 messages
2007-08-23 15:00:47admincreate