Lines Matching refs:arg
4 def __init__(self, arg): argument
5 self.val = arg
8 def __call__(self, arg): argument
9 return 'A.__call__', arg
10 def foo(self, arg): argument
11 return 'A.foo', self.val, arg
22 def f1(self, arg): argument
23 return 'C.f1', self is c, arg
24 f2 = lambda self, arg: ('C.f2', self is c, arg) argument
26 def f4(self, arg): # generator argument
27 yield self is c, arg