Lichen

tests/slice.py

319:e39bf1c565b8
2016-12-05 Paul Boddie Changed multiple assignment detection to distinguish between different objects of the same kind.
     1 l = range(0, 10)     2 print l                     # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]     3      4 s = slice(2, 5)     5 print s                     # __builtins__.span.slice(2, 5, 1)     6      7 print l[s]                  # [2, 3, 4]     8 print l[2:5]                # [2, 3, 4]     9 print l[2:5:-1]             # []    10 print l[5:2:-1]             # [5, 4, 3]    11 print l[1:9:2]              # [1, 3, 5, 7]    12 print l[9:1:-2]             # [9, 7, 5, 3]