(source: PyObjectRef, vm: &VirtualMachine)
| 62 | } |
| 63 | |
| 64 | fn get_value_from_source(source: PyObjectRef, vm: &VirtualMachine) -> PyResult<PyBytesInner> { |
| 65 | bytes_from_object(vm, &source).map(|x| x.into()) |
| 66 | } |
| 67 | |
| 68 | fn get_value_from_size(size: PyIntRef, vm: &VirtualMachine) -> PyResult<PyBytesInner> { |
| 69 | let size = size |
nothing calls this directly
no test coverage detected