(zelf: PyRef<Self>, value: ArgIndex, vm: &VirtualMachine)
| 517 | } |
| 518 | |
| 519 | fn __mul__(zelf: PyRef<Self>, value: ArgIndex, vm: &VirtualMachine) -> PyResult<PyRef<Self>> { |
| 520 | zelf.repeat(value.into_int_ref().try_to_primitive(vm)?, vm) |
| 521 | } |
| 522 | |
| 523 | fn __mod__(&self, values: PyObjectRef, vm: &VirtualMachine) -> PyResult<Self> { |
| 524 | let formatted = self.inner.cformat(values, vm)?; |
nothing calls this directly
no test coverage detected