(length: usize, vm: &VirtualMachine)
| 3492 | #[cfg(all(unix, not(target_os = "redox")))] |
| 3493 | #[pyfunction(name = "CMSG_SPACE")] |
| 3494 | fn cmsg_space(length: usize, vm: &VirtualMachine) -> PyResult<usize> { |
| 3495 | checked_cmsg_space(length) |
| 3496 | .ok_or_else(|| vm.new_overflow_error("CMSG_SPACE() argument out of range")) |
| 3497 | } |
| 3498 | } |
no test coverage detected