(&self, vm: &VirtualMachine)
| 401 | |
| 402 | #[pymethod] |
| 403 | fn __getnewargs__(&self, vm: &VirtualMachine) -> PyObjectRef { |
| 404 | (self.value,).to_pyobject(vm) |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | impl Comparable for PyFloat { |
nothing calls this directly
no test coverage detected