(vm: &VirtualMachine)
| 611 | |
| 612 | #[pyfunction] |
| 613 | fn exit(vm: &VirtualMachine) -> PyResult { |
| 614 | Err(vm.new_exception_empty(vm.ctx.exceptions.system_exit.to_owned())) |
| 615 | } |
| 616 | |
| 617 | thread_local!(static SENTINELS: RefCell<Vec<PyRef<Lock>>> = const { RefCell::new(Vec::new()) }); |
| 618 |
nothing calls this directly
no test coverage detected