Lichen

Annotated tests/methods_bound.py

580:e703b981b9b1
2017-02-13 Paul Boddie Eliminated redundant struct usage. method-wrapper-for-context
paul@90 1
class C:
paul@90 2
    def m(self, x):
paul@90 3
        return x
paul@90 4
paul@90 5
def f(obj, i):
paul@90 6
    if i:
paul@90 7
        return obj.m(i)
paul@90 8
    else:
paul@90 9
        return obj.m
paul@90 10
paul@90 11
c = C()
paul@202 12
print f(c, 1)    # 1
paul@202 13
print f(c, 0)(2) # 2
paul@90 14
fn = f(c, 0)
paul@202 15
print fn(2)      # 2