(self, event)
| 765 | func(self.text) |
| 766 | |
| 767 | def _release(self, event): |
| 768 | if self.ignore(event): |
| 769 | return |
| 770 | if event.canvas.mouse_grabber != self.ax: |
| 771 | return |
| 772 | event.canvas.release_mouse(self.ax) |
| 773 | |
| 774 | def _keypress(self, event): |
| 775 | if self.ignore(event): |
nothing calls this directly
no test coverage detected