Lichen

Annotated tests/class_names.py

756:195b15f90472
2017-03-21 Paul Boddie Allocate integers using a different allocator employing GC_MALLOC_ATOMIC.
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