Lines Matching refs:result
1844 # to create the replacement result.
2756 result = obj.search(s)
2758 self.assertIsNone(result, 'Succeeded incorrectly')
2762 self.assertTrue(result, 'Failed incorrectly')
2764 # result string and compare it to our expected result.
2765 start, end = result.span(0)
2766 vardict = {'found': result.group(0),
2767 'groups': result.group(),
2768 'flags': result.re.flags}
2771 gi = result.group(i)
2778 for i in result.re.groupindex.keys():
2780 gi = result.group(i)
2806 result = obj.search(bs)
2807 if result is None:
2815 and result is not None):