(&self, args: FuncArgs, vm: &VirtualMachine)
| 975 | |
| 976 | #[pymethod] |
| 977 | fn format(&self, args: FuncArgs, vm: &VirtualMachine) -> PyResult<Wtf8Buf> { |
| 978 | let format_str = |
| 979 | FormatString::from_str(self.as_wtf8()).map_err(|e| e.to_pyexception(vm))?; |
| 980 | format(&format_str, &args, vm) |
| 981 | } |
| 982 | |
| 983 | #[pymethod] |
| 984 | fn format_map(&self, mapping: PyObjectRef, vm: &VirtualMachine) -> PyResult<Wtf8Buf> { |
nothing calls this directly
no test coverage detected