(&self, text: PyStrRef)
| 321 | impl PyPattern { |
| 322 | #[pymethod(name = "match")] |
| 323 | fn match_(&self, text: PyStrRef) -> Option<PyMatch> { |
| 324 | do_match(self, text) |
| 325 | } |
| 326 | |
| 327 | #[pymethod] |
| 328 | fn search(&self, text: PyStrRef) -> Option<PyMatch> { |
nothing calls this directly
no test coverage detected