Lines Matching refs:tgt
1302 tgt = []1305 tgt.append(elem)1306 self.assertEqual(list(takewhile(isEven, g(s))), tgt)1314 tgt = []1316 if not tgt and isOdd(elem): continue1317 tgt.append(elem)1318 self.assertEqual(list(dropwhile(isOdd, g(s))), tgt)