Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python: How to call unbound method with other type parameter? [duplicate]

Tags:

python

methods

Python 2.6.4 (r264:75706, Dec  7 2009, 18:45:15)
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> class A(object):
...     def f(self):
...             print self.k
...
>>> class B(object):pass
...
>>> a=A()
>>> b=B()
>>> a.k="a.k"
>>> b.k="b.k"
>>> a.f()
a.k
>>> A.f(a)
a.k
>>> A.f(b)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unbound method f() must be called with A instance as first argument (got B instance instead)
>>>

How can I do this?

Edited:this example is more clear

like image 708
sevenever Avatar asked Jul 21 '10 07:07

sevenever


1 Answers

Use the im_func attribute of the method.

A.f.im_func(b)
like image 144
Ignacio Vazquez-Abrams Avatar answered Sep 23 '22 14:09

Ignacio Vazquez-Abrams