Lichen

tests/list.py

206:1a64c775111a
2016-11-22 Paul Boddie Fixed fragment allocation in the native functions and added some list and buffer operations, extending the buffer class. Eventually, buffer and list may be combined in some way.
     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]