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

9 lines
93 B
Python

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