Files
openide/python/testData/paramInfo/BoundMethodReassigned.py

12 lines
105 B
Python

class A(object):
def foo(self, a, b):
pass
moo = foo
ff = A().moo
f = ff
f(<arg1>1, <arg2>2)