(weak_ref, stmt)
| 2765 | |
| 2766 | |
| 2767 | def _weak_maybe_gc_stmt(weak_ref, stmt): |
| 2768 | self = weak_ref() |
| 2769 | if self is not None: |
| 2770 | self._maybe_gc_stmt(stmt) |
| 2771 | |
| 2772 | |
| 2773 | _uid = 0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…