(zelf: PyRef<Self>, vm: &VirtualMachine)
| 1478 | |
| 1479 | #[pymethod] |
| 1480 | fn __getnewargs__(zelf: PyRef<Self>, vm: &VirtualMachine) -> PyObjectRef { |
| 1481 | (zelf.as_wtf8(),).to_pyobject(vm) |
| 1482 | } |
| 1483 | |
| 1484 | #[pymethod] |
| 1485 | fn __str__(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyStrRef> { |
nothing calls this directly
no test coverage detected