(&self, values: PyObjectRef, vm: &VirtualMachine)
| 538 | } |
| 539 | |
| 540 | fn __mod__(&self, values: PyObjectRef, vm: &VirtualMachine) -> PyResult<Self> { |
| 541 | let formatted = self.inner().cformat(values, vm)?; |
| 542 | Ok(formatted.into()) |
| 543 | } |
| 544 | |
| 545 | #[pymethod] |
| 546 | fn reverse(&self) { |