Lichen

Annotated tests/global_names.py

214:045514fb8fde
2016-11-23 Paul Boddie Added print statements for testing purposes.
paul@2 1
class C:
paul@2 2
    x = 3
paul@2 3
paul@2 4
def f():
paul@2 5
    x = g.x
paul@2 6
    y = g
paul@2 7
    return y.x
paul@2 8
paul@2 9
g = C
paul@2 10
result = f()
paul@214 11
print result # 3