(self)
| 722 | self.checkPatternError(r'(abc\1)', 'cannot refer to an open group', 4) |
| 723 | |
| 724 | def test_groupdict(self): |
| 725 | self.assertEqual(re.match('(?P<first>first) (?P<second>second)', |
| 726 | 'first second').groupdict(), |
| 727 | {'first':'first', 'second':'second'}) |
| 728 | |
| 729 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 730 | def test_expand(self): |
nothing calls this directly
no test coverage detected