()
| 1577 | |
| 1578 | #[pyfunction] |
| 1579 | fn abort() { |
| 1580 | unsafe extern "C" { |
| 1581 | fn abort(); |
| 1582 | } |
| 1583 | unsafe { abort() } |
| 1584 | } |
| 1585 | |
| 1586 | #[pyfunction] |
| 1587 | fn urandom(size: isize, vm: &VirtualMachine) -> PyResult<Vec<u8>> { |
no outgoing calls
no test coverage detected