Lichen

tests/methods_bound.py

153:a32be37ae7dc
2016-10-30 Paul Boddie Added result conversion for access instructions, fixed __get_class_and_load.
     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)