Message245131
>>> 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. |
|
Date |
User |
Action |
Args |
2015-06-10 15:24:22 | llllllllll | set | recipients:
+ llllllllll, rhettinger, mark.dickinson, taleinat, Arfrever, steven.daprano, serhiy.storchaka |
2015-06-10 15:24:22 | llllllllll | set | messageid: <1433949862.52.0.556556844252.issue24379@psf.upfronthosting.co.za> |
2015-06-10 15:24:22 | llllllllll | link | issue24379 messages |
2015-06-10 15:24:22 | llllllllll | create | |
|