(name: str, _args: tuple)
| 1648 | |
| 1649 | |
| 1650 | def _hook(name: str, _args: tuple): |
| 1651 | if _audit_events is not None: # No-op when not activated |
| 1652 | _audit_events.add(name) |
| 1653 | sys.addaudithook(_hook) |
| 1654 | |
| 1655 |
nothing calls this directly
no test coverage detected
searching dependent graphs…