blob: d6f6c87b84984fb0a2432761c5b41a41ff10eda0 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class Foo:
2 def moo(self, a, b, c):
3 pass
4
5foo = Foo()
6qoo = foo
7
8qoo.moo(<arg1>1, <arg2>2, <arg3>"bamboo")