()
| 258 | /// Return the number of objects in the permanent generation. |
| 259 | #[pyfunction] |
| 260 | fn get_freeze_count() -> usize { |
| 261 | gc_state::gc_state().get_freeze_count() |
| 262 | } |
| 263 | |
| 264 | /// gc.garbage - list of uncollectable objects |
| 265 | #[pyattr] |
nothing calls this directly
no test coverage detected