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.

classification
Title: Extended slicing for array objects
Type: Stage:
Components: Interpreter Core Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: twouters Nosy List: twouters
Priority: normal Keywords: patch

Created on 2006-12-18 04:24 by twouters, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
noslice.array.diff twouters, 2006-12-18 04:24
Messages (2)
msg51566 - (view) Author: Thomas Wouters (twouters) * (Python committer) Date: 2006-12-18 04:24
Rework extended slicing for array objects, fixing a few bugs (like 'x[5:2] = y' working but 'x[5:2:1] = y' failing.) Optimize the common case of step-1 slicing. Also make extended slicing independent from simple slicing for easier removal of simple slicing in Py3K. Add tests for all extended slicing behaviour.
(Backported from p3yk-noslice branch.)
msg55369 - (view) Author: Thomas Wouters (twouters) * (Python committer) Date: 2007-08-28 15:30
Committed revision 57619.
History
Date User Action Args
2022-04-11 14:56:21adminsetgithub: 44353
2007-08-28 15:30:56twouterssetstatus: open -> closed
assignee: twouters
resolution: fixed
messages: + msg55369
2006-12-18 04:24:05twouterscreate