Clear all pending calls.
(self)
| 939 | return self._pending_calls.pop(call_id, None) |
| 940 | |
| 941 | def clear(self) -> None: |
| 942 | """Clear all pending calls.""" |
| 943 | self._pending_calls.clear() |
| 944 | |
| 945 | |
| 946 | # ============================================================================= |
no outgoing calls
no test coverage detected