Lichen

tests/class_names.py

633:1b6f40b2928e
2017-02-27 Paul Boddie Fixed the reset flag by propagating the reset condition to the translator, forcing all source files to be translated again.
     1 class C:     2     pass     3      4 def c():     5     return 456     6      7 def f():     8     return C()     9     10 print f()                       # 123    11     12 C = c    13     14 print f()                       # 456