Lichen

Annotated tests/class_names.py

792:d70932955645
2017-03-31 Paul Boddie Fixed non-recognition of deferred references in non-module, non-function scopes.
paul@320 1
class C:
paul@320 2
    pass
paul@320 3
paul@320 4
def c():
paul@320 5
    return 456
paul@320 6
paul@320 7
def f():
paul@320 8
    return C()
paul@320 9
paul@320 10
print f()                       # 123
paul@320 11
paul@320 12
C = c
paul@320 13
paul@320 14
print f()                       # 456