Lichen

tests/methods_selfless.py

360:209dc7a270fd
2016-12-09 Paul Boddie Added support for dynamic attribute access using getattr and hasattr, employing a special attribute on strings to hold the object table code and position for any attribute having the same name as the represented string.
     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