(self)
| 1567 | self.checkPatternError(r"[b-a]", 'bad character range b-a', 1) |
| 1568 | |
| 1569 | def test_bug_113254(self): |
| 1570 | self.assertEqual(re.match(r'(a)|(b)', 'b').start(1), -1) |
| 1571 | self.assertEqual(re.match(r'(a)|(b)', 'b').end(1), -1) |
| 1572 | self.assertEqual(re.match(r'(a)|(b)', 'b').span(1), (-1, -1)) |
| 1573 | |
| 1574 | def test_bug_527371(self): |
| 1575 | # bug described in patches 527371/672491 |
nothing calls this directly
no test coverage detected