()
| 769 | // faulthandler_disable_py |
| 770 | #[pyfunction] |
| 771 | fn disable() -> bool { |
| 772 | let was_enabled = FATAL_ERROR.enabled.load(Ordering::Relaxed); |
| 773 | faulthandler_disable_internal(); |
| 774 | was_enabled |
| 775 | } |
| 776 | |
| 777 | // faulthandler_is_enabled |
| 778 | #[pyfunction] |
nothing calls this directly
no test coverage detected