2016-12-07 | Paul Boddie | raw annotate files changeset graph | Associate constant name information with references so that structure members such as function instance default members can be generated statically, thus eliminating unnecessary structure initialisation in the translated code. Improved the determination of dynamic functions in the importer to consider only non-constant defaults. |
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