(self)
| 2181 | (7, 9)) |
| 2182 | |
| 2183 | def test_bug_20998(self): |
| 2184 | # Issue #20998: Fullmatch of repeated single character pattern |
| 2185 | # with ignore case. |
| 2186 | self.assertEqual(re.fullmatch('[a-c]+', 'ABC', re.I).span(), (0, 3)) |
| 2187 | |
| 2188 | @unittest.expectedFailure # TODO: RUSTPYTHON; self.assertTrue(re.match(b'\xc5', b'\xe5', re.L|re.I))\n AssertionError: None is not true |
| 2189 | @unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390") |
nothing calls this directly
no test coverage detected