blob: c863abb06378c0416738fa30132c262c2333862b [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A(object):
2 @staticmethod
3 def foo(a, b):
4 pass
5
6f = A().foo
7
8f(<arg1>1, <arg2>2)