(self)
| 1674 | ('b', None)) |
| 1675 | |
| 1676 | def test_bug_725149(self): |
| 1677 | # mark_stack_base restoring before restoring marks |
| 1678 | self.assertEqual(re.match('(a)(?:(?=(b)*)c)*', 'abb').groups(), |
| 1679 | ('a', None)) |
| 1680 | self.assertEqual(re.match('(a)((?!(b)*))*', 'abb').groups(), |
| 1681 | ('a', None, None)) |
| 1682 | |
| 1683 | def test_bug_764548(self): |
| 1684 | # bug 764548, re.compile() barfs on str/unicode subclasses |
nothing calls this directly
no test coverage detected