I know that range(start,end,stride) will produce what I'd want from
iter(slice(start,end,stride)), but wouldn't it be reasonable for a slice
itself to be iterable?
Yes, only one obvious way and all that, but inside eg __getitem__ it
seems to me that:
if isinstance(index, slice):
for i in index:
... do stuff with i ...
is the obvious thing to do.
Cheers,
Cameron Simpson <[email protected]>
_______________________________________________
Python-ideas mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at
https://mail.python.org/archives/list/[email protected]/message/F27M57MIYIDD55YVASYGVOU3LSKN74S7/
Code of Conduct: http://python.org/psf/codeofconduct/