Lichen

tests/nested.py

128:e3392c6469c9
2016-10-24 Paul Boddie Tidied up statement spacing and simple attribute access presentation. Added missing include and variable declarations.
     1 a = 4     2      3 def f(x):     4     def g(y, x=x):     5         def h(z, x=x, y=y):     6             return x, y, z, a     7         return h     8     return g     9     10 result = f(1)(2)(3)    11 assert result == (1, 2, 3, 4)