Lichen

tests/inheritance.py

283:70939defa51d
2016-11-30 Paul Boddie Added dict support, changing the literal instantiators to use functions appropriate for sequences or mappings that set the __data__ attribute on each new instance. Added a __hash__ method for integers.
     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