Lichen

tests/global_names.py

81:1b764ef8a184
2016-10-06 Paul Boddie Added an origin parent retrieval method, also fixing the ancestors method.
     1 class C:     2     x = 3     3      4 def f():     5     x = g.x     6     y = g     7     return y.x     8      9 g = C    10 result = f()    11 assert result == 3