Lichen

tests/methods_bound.py

127:054dbf0812a1
2016-10-24 Paul Boddie Fixed output label.
     1 class C:     2     def m(self, x):     3         return x     4      5 def f(obj, i):     6     if i:     7         return obj.m(i)     8     else:     9         return obj.m    10     11 c = C()    12 result1 = f(c, 1)    13 fn = f(c, 0)    14 result2 = fn(2)