(self)
| 607 | self.assertRaises(TypeError, len, m) |
| 608 | |
| 609 | def test_match_getitem(self): |
| 610 | pat = re.compile('(?:(?P<a1>a)|(?P<b2>b))(?P<c3>c)?') |
| 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)?') |
nothing calls this directly
no test coverage detected