Stop the current blocking event loop. Interactive backends need to reimplement this to match `start_event_loop`
(self)
| 2463 | counter += 1 |
| 2464 | |
| 2465 | def stop_event_loop(self): |
| 2466 | """ |
| 2467 | Stop the current blocking event loop. |
| 2468 | |
| 2469 | Interactive backends need to reimplement this to match |
| 2470 | `start_event_loop` |
| 2471 | """ |
| 2472 | self._looping = False |
| 2473 | |
| 2474 | |
| 2475 | def key_press_handler(event, canvas=None, toolbar=None): |
no outgoing calls
no test coverage detected