(self, event)
| 455 | return "+".join([*mods, key]) |
| 456 | |
| 457 | def key_press(self, event): |
| 458 | KeyEvent("key_press_event", self, |
| 459 | self._get_key(event), *self._event_mpl_coords(event), |
| 460 | guiEvent=event)._process() |
| 461 | |
| 462 | def key_release(self, event): |
| 463 | KeyEvent("key_release_event", self, |
nothing calls this directly
no test coverage detected