Lines Matching refs:slicing
264 .. index:: single: slicing
266 Sequences also support slicing: ``a[i:j]`` selects all items with index *k* such
271 .. index:: single: extended slicing
273 Some sequences also support "extended slicing" with a third "step" parameter:
360 single: slicing
363 slicing notations can be used as the target of assignment and :keyword:`del`
1171 (such as arithmetic operations or subscripting and slicing) by defining methods
2005 classes when implementing slicing.)
2024 slicing of the form ``self[i:j:k]``, a slice object is created, and passed to
2032 found, or for extended slicing of the form ``self[i:j:k]``, a slice object is
2241 an integer object (such as in slicing). Must return an integer (int or long).