Message275277
| Author |
ncoghlan |
| Recipients |
mark.dickinson, ncoghlan, serhiy.storchaka, tehybel, terry.reedy |
| Date |
2016年09月09日.07:20:49 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1473405649.86.0.580796806975.issue27867@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
As in, for arguments that have __index__() methods, do the conversion to a true Python integer eagerly when the slice is built rather than lazily when slice.indices() (or the C-level equivalent) is called?
That actually seems like a potentially plausible future approach to me, but isn't a change I'd want to make hastily - those values are visible as the start, stop and step attributes on the slice, and https://docs.python.org/3/reference/datamodel.html#types currently describes those as "These attributes can have any type."
Given that folks do a lot of arcane things with the subscript notation, I wouldn't want to break working code if we have less intrusive alternatives. |
|