Issue222858

classification
Title: backwards slice causes exception
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: bckfnn
Priority: low Keywords:

Created on 2000-11-18.19:38:04 by bckfnn, last changed 2000-11-18.23:08:03 by bckfnn.

Messages
msg167 (view) Author: Finn Bock (bckfnn) Date: 2000-11-18.19:38:04
>>> l = [1, 2,3,4,5]
>>> l[3:2]
Traceback (innermost last):
  File "<input>", line 1, in ?
java.lang.ArrayIndexOutOfBoundsException
	at org.python.core.PyList.getslice(PyList.java:157)
	at org.python.core.PySequence.__getslice__(PySequence.java:316)
        .....
msg168 (view) Author: Finn Bock (bckfnn) Date: 2000-11-18.23:08:03
Fixed in the builtin sequences.
History
Date User Action Args
2000-11-18 19:38:04bckfnncreate