Thomas 'PointedEars' Lahn wrote:

> #------------------------------------------------------------------------
> class A:
>     def __init__ (self, v=0):
>         self._value = v
> 
>     def foo (self, f, b):
>         return f(f, self._value, b)

I mean

        return f(self._value, b)

-- 
PointedEars

Twitter: @PointedEars2
Please do not cc me. / Bitte keine Kopien per E-Mail.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to