(&self, search_text: PyStrRef, vm: &VirtualMachine)
| 358 | |
| 359 | #[pymethod] |
| 360 | fn findall(&self, search_text: PyStrRef, vm: &VirtualMachine) -> PyResult { |
| 361 | do_findall(vm, self, search_text) |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | #[pyclass] |
nothing calls this directly
no test coverage detected