See :func:`.Mock.reset_mock()`
(self, /, *args, **kwargs)
| 3088 | self.__dict__["_mock_wait_timeout"] = timeout |
| 3089 | |
| 3090 | def reset_mock(self, /, *args, **kwargs): |
| 3091 | """ |
| 3092 | See :func:`.Mock.reset_mock()` |
| 3093 | """ |
| 3094 | super().reset_mock(*args, **kwargs) |
| 3095 | self.__dict__["_mock_event"] = threading.Event() |
| 3096 | self.__dict__["_mock_calls_events"] = [] |
| 3097 | |
| 3098 | def __get_event(self, expected_args, expected_kwargs): |
| 3099 | with self._mock_calls_events_lock: |
nothing calls this directly
no test coverage detected