(threshold0: u32, threshold1: OptionalArg<u32>, threshold2: OptionalArg<u32>)
| 95 | /// Set the collection thresholds. |
| 96 | #[pyfunction] |
| 97 | fn set_threshold(threshold0: u32, threshold1: OptionalArg<u32>, threshold2: OptionalArg<u32>) { |
| 98 | gc_state::gc_state().set_threshold( |
| 99 | threshold0, |
| 100 | threshold1.into_option(), |
| 101 | threshold2.into_option(), |
| 102 | ); |
| 103 | } |
| 104 | |
| 105 | /// Return the current collection counts as a tuple. |
| 106 | #[pyfunction] |
nothing calls this directly
no test coverage detected