How to pass class instance to a method?

Gregory Ewing greg.ewing at canterbury.ac.nz
Sun Nov 25 17:22:59 EST 2012


ALeX inSide wrote:
> I suppose there shall be some kind of method decorator to treat an argument as an 
 > instance of class?

You can do this:

    xxx = MyClass.some_method

and then

    i = MyClass()
    xxx(i, foo, bar)

Does that help?

-- 
Greg



More information about the Python-list mailing list