(_vm: &VirtualMachine)
| 1235 | |
| 1236 | #[pyfunction] |
| 1237 | fn _sigfpe(_vm: &VirtualMachine) { |
| 1238 | #[cfg(not(target_arch = "wasm32"))] |
| 1239 | { |
| 1240 | suppress_crash_report(); |
| 1241 | |
| 1242 | unsafe { |
| 1243 | libc::raise(libc::SIGFPE); |
| 1244 | } |
| 1245 | } |
| 1246 | } |
| 1247 | |
| 1248 | #[pyfunction] |
| 1249 | fn _fatal_error_c_thread() { |
nothing calls this directly
no test coverage detected