(&self, text: PyStrRef)
| 326 | |
| 327 | #[pymethod] |
| 328 | fn search(&self, text: PyStrRef) -> Option<PyMatch> { |
| 329 | do_search(self, text) |
| 330 | } |
| 331 | |
| 332 | #[pymethod] |
| 333 | fn sub(&self, repl: PyStrRef, text: PyStrRef, vm: &VirtualMachine) -> PyResult<PyStrRef> { |
nothing calls this directly
no test coverage detected