(_vm: &VirtualMachine)
| 1223 | |
| 1224 | #[pyfunction] |
| 1225 | fn _sigabrt(_vm: &VirtualMachine) { |
| 1226 | #[cfg(not(target_arch = "wasm32"))] |
| 1227 | { |
| 1228 | suppress_crash_report(); |
| 1229 | |
| 1230 | unsafe { |
| 1231 | libc::abort(); |
| 1232 | } |
| 1233 | } |
| 1234 | } |
| 1235 | |
| 1236 | #[pyfunction] |
| 1237 | fn _sigfpe(_vm: &VirtualMachine) { |
nothing calls this directly
no test coverage detected