Lines Matching full:capture
20 def capture(*args, **kw):
21 """capture all positional and keyword arguments"""
33 p = self.thetype(capture, 1, 2, a=10, b=20)
40 p = self.thetype(capture, 1, 2, a=10, b=20)
42 self.assertEqual(p.func, capture)
83 p = self.thetype(capture)
86 p = self.thetype(capture, 1, 2)
93 p = self.thetype(capture)
96 p = self.thetype(capture, a=1)
105 p = self.thetype(capture, *args)
113 p = self.thetype(capture, a=a)
120 p = self.thetype(capture, 0, a=1)