Home | History | Annotate | Download | only in test

Lines Matching refs:ternop_test

98     def ternop_test(self, a, b, c, res, expr="a[b:c]", meth="__getslice__"):

176 self.ternop_test([1,2,3], 0, 2, [1,2], "a[b:c]", "__getslice__")
318 self.ternop_test(spamlist([1,2,3]), 0, 2, spamlist([1,2]), "a[b:c]",