(self)
| 611 | self.do_test_match_getitem(pat.match) |
| 612 | |
| 613 | def test_prefixmatch_getitem(self): |
| 614 | pat = re.compile('(?:(?P<a1>a)|(?P<b2>b))(?P<c3>c)?') |
| 615 | self.do_test_match_getitem(pat.prefixmatch) |
| 616 | |
| 617 | def test_re_fullmatch(self): |
| 618 | # Issue 16203: Proposal: add re.fullmatch() method. |
nothing calls this directly
no test coverage detected