Lines Matching refs:makeCallable
1644 def makeCallable(self, signature):
1650 f = self.makeCallable('a, b=1')
1673 f = self.makeCallable('a, b=1, *c')
1682 f = self.makeCallable('a, b=1, **c')
1695 f = self.makeCallable('**c')
1704 f = self.makeCallable('a=3, *, c, d=2')
1714 f = self.makeCallable('*, c, d=2')
1720 f = self.makeCallable('a, b=2, *f, **g')
1732 f = self.makeCallable('a, b=2, *f, x, y=99, **g')
1744 f0 = self.makeCallable('')
1745 f1 = self.makeCallable('a, b')
1746 f2 = self.makeCallable('a, b=1')
1777 f3 = self.makeCallable('**c')
1780 f4 = self.makeCallable('*, a, b=0')
1825 def makeCallable(self, signature):
1827 mk = super(TestGetcallargsMethods, self).makeCallable
1833 def makeCallable(self, signature):
1834 super(TestGetcallargsUnboundMethods, self).makeCallable(signature)