()
| 36 | /// Return true if automatic gc is enabled. |
| 37 | #[pyfunction] |
| 38 | fn isenabled() -> bool { |
| 39 | gc_state::gc_state().is_enabled() |
| 40 | } |
| 41 | |
| 42 | /// Run a garbage collection. Returns the number of unreachable objects found. |
| 43 | #[derive(FromArgs)] |
nothing calls this directly
no test coverage detected