()
| 10 | pub(crate) const NSIG: usize = 64; |
| 11 | |
| 12 | pub(crate) fn new_signal_handlers() -> Box<RefCell<[Option<PyObjectRef>; NSIG]>> { |
| 13 | Box::new(const { RefCell::new([const { None }; NSIG]) }) |
| 14 | } |
| 15 | static ANY_TRIGGERED: AtomicBool = AtomicBool::new(false); |
| 16 | // hack to get around const array repeat expressions, rust issue #79270 |
| 17 | #[allow( |