(
_signalnum: i32,
_handler: PyObjectRef,
vm: &VirtualMachine,
)
| 192 | #[cfg(not(any(unix, windows)))] |
| 193 | #[pyfunction] |
| 194 | pub fn signal( |
| 195 | _signalnum: i32, |
| 196 | _handler: PyObjectRef, |
| 197 | vm: &VirtualMachine, |
| 198 | ) -> PyResult<Option<PyObjectRef>> { |
| 199 | Err(vm.new_not_implemented_error("signal is not implemented on this platform")) |
| 200 | } |
| 201 | |
| 202 | #[cfg(any(unix, windows))] |
| 203 | #[pyfunction] |
no test coverage detected