(args: RaiseExceptionArgs, _vm: &VirtualMachine)
| 1323 | #[cfg(windows)] |
| 1324 | #[pyfunction] |
| 1325 | fn _raise_exception(args: RaiseExceptionArgs, _vm: &VirtualMachine) { |
| 1326 | use windows_sys::Win32::System::Diagnostics::Debug::RaiseException; |
| 1327 | |
| 1328 | suppress_crash_report(); |
| 1329 | unsafe { |
| 1330 | RaiseException(args.code, args.flags, 0, core::ptr::null()); |
| 1331 | } |
| 1332 | } |
| 1333 | } |
nothing calls this directly
no test coverage detected