Lichen

tests/inheritance.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     a = 1     3     b = 2     4      5 class D(C):     6     pass     7      8 def f():     9     C.a = 3     # only changes C.a, not D.a    10     11 print C.a       # 1    12 print D.a       # 1    13 print C.b       # 2    14 print D.b       # 2    15     16 f()    17     18 print C.a       # 3    19 print D.a       # 1