(self, *args, **kwargs)
| 179 | @functools.wraps(func) |
| 180 | @threadsafe_method |
| 181 | def lock_and_call(self, *args, **kwargs): |
| 182 | with self: |
| 183 | return func(self, *args, **kwargs) |
| 184 | |
| 185 | return lock_and_call |
nothing calls this directly
no test coverage detected
searching dependent graphs…