Home | History | Annotate | Download | only in test

Lines Matching refs:ternop_test

100     def ternop_test(self, a, b, c, res, expr="a[b:c]", meth="__getslice__"):
178 self.ternop_test([1,2,3], 0, 2, [1,2], "a[b:c]", "__getslice__")
320 self.ternop_test(spamlist([1,2,3]), 0, 2, spamlist([1,2]), "a[b:c]",