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 kees
Recipients kees
Date 2009-09-23.14:11:26
SpamBayes Score 0.00039016554
Marked as misclassified No
Message-id <1253715087.11.0.983190923732.issue6978@psf.upfronthosting.co.za>
In-reply-to
Content
I just see that my patch is not correct, since the following is
supported by the language:

O[1:2:3, 4:5:6]

Where O[1:2:3, 4:5:6] == O[slice(1,2,3), slice(4,5,6)] ==
O.__getitem__((slice(1,2,3), slice(4,5,6)))
History
Date User Action Args
2009-09-23 14:11:27keessetrecipients: + kees
2009-09-23 14:11:27keessetmessageid: <1253715087.11.0.983190923732.issue6978@psf.upfronthosting.co.za>
2009-09-23 14:11:26keeslinkissue6978 messages
2009-09-23 14:11:26keescreate