38: #line 66 "felix_func.ipk" 39: class input_adapter: 40: def __init__(self, func): 41: self.func = func 42: 43: def __call__(self, arg): 44: return apply(self.func, arg[0], arg[1]) 45: