Issue 1617698: Extended slicing for array objects (original) (raw)

Issue1617698

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:21 admin set github: 44353
2007-08-28 15:30:56 twouters set status: open -> closedassignee: twoutersresolution: fixedmessages: +
2006-12-18 04:24:05 twouters create