Home | History | Annotate | Download | only in test

Lines Matching refs:makeCallable

665     def makeCallable(self, signature):
676 f = self.makeCallable('a, b=1')
704 f = self.makeCallable('a, b=1, *c')
713 f = self.makeCallable('a, b=1, **c')
730 f = self.makeCallable('**c')
739 f = self.makeCallable('(b,c), (d,(e,f))=(0,[1,2])')
748 f = self.makeCallable('a, b=2, (c,(d,e))=(3,[4,5]), *f, **g')
760 f0 = self.makeCallable('')
761 f1 = self.makeCallable('a, b')
762 f2 = self.makeCallable('a, b=1')
795 f = self.makeCallable('(a,b)=(0,1)')
800 f3 = self.makeCallable('**c')
812 def makeCallable(self, signature):
814 mk = super(TestGetcallargsMethods, self).makeCallable
820 def makeCallable(self, signature):
821 super(TestGetcallargsUnboundMethods, self).makeCallable(signature)