Lichen

tests/nested_mixed.py

203:e28858d7f9d5
2016-11-21 Paul Boddie Added alias serialisation in order to preserve origin information for imported instances in the cached data.
     1 a = 4     2      3 def f(x):     4     def g(y, x=x):     5         def h(a, z, x=x, y=y):     6             return x, y, z, a # parameter a overrides global scope     7         return h     8     return g     9     10 result = f(1)(2)(5, 3)    11 assert result == (1, 2, 3, 5)