(fd: crt_fd::Borrowed<'_>, vm: &VirtualMachine)
| 170 | |
| 171 | #[pyfunction] |
| 172 | fn get_osfhandle(fd: crt_fd::Borrowed<'_>, vm: &VirtualMachine) -> PyResult<isize> { |
| 173 | crt_fd::as_handle(fd) |
| 174 | .map(|h| h.as_raw_handle() as _) |
| 175 | .map_err(|e| e.into_pyexception(vm)) |
| 176 | } |
| 177 | |
| 178 | #[allow(non_snake_case)] |
| 179 | #[pyfunction] |