Files
openide/python/testData/paramInfo/Staticmethod.py
2010-10-26 17:18:25 +03:00

7 lines
92 B
Python

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