Print tracked objects
(*a: Any, **kw: Any)
| 62 | |
| 63 | |
| 64 | def print_live_refs(*a: Any, **kw: Any) -> None: |
| 65 | """Print tracked objects""" |
| 66 | print(format_live_refs(*a, **kw)) |
| 67 | |
| 68 | |
| 69 | def get_oldest(class_name: str) -> Any: |
nothing calls this directly
no test coverage detected