(_py: Python)
| 7 | static CALL_COUNT: atomic::AtomicUsize = atomic::AtomicUsize::new(0); |
| 8 | |
| 9 | fn f(_py: Python) -> PyResult<usize> { |
| 10 | Ok(CALL_COUNT.fetch_add(1, Relaxed)) |
| 11 | } |
| 12 | |
| 13 | let gil = Python::acquire_gil(); |
| 14 | let py = gil.python(); |
no outgoing calls
no test coverage detected