(&self, repl: PyStrRef, text: PyStrRef, vm: &VirtualMachine)
| 338 | |
| 339 | #[pymethod] |
| 340 | fn subn(&self, repl: PyStrRef, text: PyStrRef, vm: &VirtualMachine) -> PyResult { |
| 341 | self.sub(repl, text, vm) |
| 342 | } |
| 343 | |
| 344 | #[pygetset] |
| 345 | fn pattern(&self, vm: &VirtualMachine) -> PyResult<PyStrRef> { |