Lichen

tests/nested_bad_conditional.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 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)