Lichen

tests/values.py

1039:16990afa2754
5 months ago Paul Boddie Eliminated redundant temporary result and attribute reference storage. value-replacement
     1 def test(a):     2     a = a - 1.0     3     return a     4      5 x = 2.0     6 print test(x)               # 1.0     7 print x                     # 2.0