(obj: PyObjectRef)
| 240 | /// Return True if the object has been finalized by the garbage collector. |
| 241 | #[pyfunction] |
| 242 | fn is_finalized(obj: PyObjectRef) -> bool { |
| 243 | obj.gc_finalized() |
| 244 | } |
| 245 | |
| 246 | /// Freeze all objects tracked by gc. |
| 247 | #[pyfunction] |
nothing calls this directly
no test coverage detected