(self, *args, **kwargs)
| 80 | class TraceDict(dict): |
| 81 | @trace_func |
| 82 | def __init__(self, *args, **kwargs): |
| 83 | return super().__init__(*args, **kwargs) |
| 84 | |
| 85 | @trace_func |
| 86 | def __setitem__(self, *args, **kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected