Lichen

tests/list.py

213:0ebba845f9b0
2016-11-23 Paul Boddie Fixed anonymous accesses, preventing accidental lookup of None. Fixed the attribute access plan output, encoding anonymous accessors.
     1 l = [1, 2, 3]     2 l.append(4)     3 print len(l)     4 print l[0]     5 print l[1]     6 print l[2]     7 print l[3]     8 print l[-1]     9 print l[-2]    10 print l[-3]    11 print l[-4]