(
_signum: PyObjectRef,
_arg: PyObjectRef,
vm: &VirtualMachine,
)
| 348 | |
| 349 | #[pyfunction] |
| 350 | fn default_int_handler( |
| 351 | _signum: PyObjectRef, |
| 352 | _arg: PyObjectRef, |
| 353 | vm: &VirtualMachine, |
| 354 | ) -> PyResult { |
| 355 | Err(vm.new_exception_empty(vm.ctx.exceptions.keyboard_interrupt.to_owned())) |
| 356 | } |
| 357 | |
| 358 | #[derive(FromArgs)] |
| 359 | struct SetWakeupFdArgs { |
nothing calls this directly
no test coverage detected