Send a signal, catch exceptions and log them. The keyword arguments are passed to the signal handlers (connected through the :meth:`connect` method).
(self, signal: Any, **kwargs: Any)
| 42 | dispatcher.disconnect(receiver, signal, **kwargs) |
| 43 | |
| 44 | def send_catch_log(self, signal: Any, **kwargs: Any) -> list[tuple[Any, Any]]: |
| 45 | """ |
| 46 | Send a signal, catch exceptions and log them. |
| 47 | |
| 48 | The keyword arguments are passed to the signal handlers (connected |
| 49 | through the :meth:`connect` method). |
| 50 | """ |
| 51 | kwargs.setdefault("sender", self.sender) |
| 52 | return _signal.send_catch_log(signal, **kwargs) |
| 53 | |
| 54 | def send_catch_log_deferred( |
| 55 | self, signal: Any, **kwargs: Any |