(self, *args, **kwargs)
| 3112 | return new_event |
| 3113 | |
| 3114 | def _mock_call(self, *args, **kwargs): |
| 3115 | ret_value = super()._mock_call(*args, **kwargs) |
| 3116 | |
| 3117 | call_event = self.__get_event(args, kwargs) |
| 3118 | call_event.set() |
| 3119 | |
| 3120 | self._mock_event.set() |
| 3121 | |
| 3122 | return ret_value |
| 3123 | |
| 3124 | def wait_until_called(self, *, timeout=_timeout_unset): |
| 3125 | """Wait until the mock object is called. |
nothing calls this directly
no test coverage detected