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 llllllllll
Recipients Arfrever, llllllllll, mark.dickinson, rhettinger, serhiy.storchaka, steven.daprano, taleinat
Date 2015-06-10.15:24:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433949862.52.0.556556844252.issue24379@psf.upfronthosting.co.za>
In-reply-to
Content
>>> slice.literal[0]
0
>>> y = slice.literal[1:2]
slice(1, 2, None)
>>> slice.literal[0:1, ..., 3]
(slice(0, 1, None), Ellipsis, 3)

The way this object works right now does not create instances of some inner class of slice, instead, indexing it returns the key without modification.
History
Date User Action Args
2015-06-10 15:24:22llllllllllsetrecipients: + llllllllll, rhettinger, mark.dickinson, taleinat, Arfrever, steven.daprano, serhiy.storchaka
2015-06-10 15:24:22llllllllllsetmessageid: <1433949862.52.0.556556844252.issue24379@psf.upfronthosting.co.za>
2015-06-10 15:24:22lllllllllllinkissue24379 messages
2015-06-10 15:24:22llllllllllcreate