(
handle: intptr_t,
inheritable: bool,
vm: &VirtualMachine,
)
| 1929 | |
| 1930 | #[pyfunction] |
| 1931 | fn set_handle_inheritable( |
| 1932 | handle: intptr_t, |
| 1933 | inheritable: bool, |
| 1934 | vm: &VirtualMachine, |
| 1935 | ) -> PyResult<()> { |
| 1936 | raw_set_handle_inheritable(handle, inheritable).map_err(|e| e.to_pyexception(vm)) |
| 1937 | } |
| 1938 | |
| 1939 | #[derive(FromArgs)] |
| 1940 | struct MkdirArgs<'a> { |
no test coverage detected