Lines Matching defs:args
22 def t3(self, ai, *args): 'doc'
23 t3.tip = "(self, ai, *args)"
24 def t4(self, *args): 'doc'
25 t4.tip = "(self, *args)"
26 def t5(self, ai, b=None, *args, **kw): 'doc'
27 t5.tip = "(self, ai, b=None, *args, **kw)"
69 '(*args, **kwargs)\n'
73 '(self, /, *args, **kwargs)\n'
170 def t3(a, *args): 'doc'
171 t3.tip = "(a, *args)"
172 def t4(*args): 'doc'
173 t4.tip = "(*args)"
174 def t5(a, b=None, *args, **kw): 'doc'
175 t5.tip = "(a, b=None, *args, **kw)"
193 for meth, mtip in ((tc.t1, "()"), (tc.t4, "(*args)"),
202 def m1(*args): pass
204 for meth, mtip in ((C.m1, '(*args)'), (c.m1, "(*args)"),):
247 class Type(type): # Type() requires 3 type args, returns class.
288 self.args = parenleft, parenright
315 # Test .active_calltip, +args
330 def args(self):
331 self.assertEqual(self.tip.args, ('1.1', '1.end'))
332 self.open_close(args)