Lichen

tests/methods_selfless.py

227:3a4ba5788f0f
2016-11-23 Paul Boddie Fixed list and tuple initialisation via their initialisers. Introduced generic string representation support for sequences. Removed superfluous tuple native functions. Added element-setting and size-setting native functions for fragments. Added __setitem__ support for sequences. Added initialisation and serialisation tests for lists and tuples.
     1 class C:     2     def __init__(x, y, z): # no explicit self     3         self.x = x     4         self.y = y     5         self.z = z     6      7     def c():     8         return self.x     9     10 class D(C):    11     def d():    12         return self.y    13     14 class E(D):    15     def c():    16         return self.z    17     18 c = C(1, 2, 3)    19 d = D(1, 2, 3)    20 e = E(1, 2, 3)    21     22 print c.c() # 1    23 print d.c() # 1    24 print e.c() # 3    25 print d.d() # 2    26 print e.d() # 2