Lichen

tests/nested_bad_conditional.py

192:ce8dad96da12
2016-11-19 Paul Boddie Introduced multiple locations for invocation target storage since C cannot guarantee the correct ordering of operations in parameter or initialiser lists, thus frustrating the use of a single location.
     1 a = 4     2      3 def f(x):     4     if not x:     5         def g(y):     6             return x, y, a     7     return g # UnboundLocalError: not defined if x is true     8      9 result = f(1)(2)    10 assert result == (1, 2, 4)