(vm: &VirtualMachine, obj: PyObjectRef)
| 546 | } |
| 547 | |
| 548 | fn f32_try_into_from_object(vm: &VirtualMachine, obj: PyObjectRef) -> PyResult<f32> { |
| 549 | ArgIntoFloat::try_from_object(vm, obj).map(|x| x.into_float() as f32) |
| 550 | } |
| 551 | |
| 552 | fn f64_try_into_from_object(vm: &VirtualMachine, obj: PyObjectRef) -> PyResult<f64> { |
| 553 | ArgIntoFloat::try_from_object(vm, obj).map(|x| x.into_float()) |
nothing calls this directly
no test coverage detected