A context manager that allows terminating a plot by sending a SIGINT.
()
| 16 | |
| 17 | |
| 18 | def _allow_interrupt_macos(): |
| 19 | """A context manager that allows terminating a plot by sending a SIGINT.""" |
| 20 | return _allow_interrupt( |
| 21 | lambda rsock: _macosx.wake_on_fd_write(rsock.fileno()), _macosx.stop) |
| 22 | |
| 23 | |
| 24 | class FigureCanvasMac(FigureCanvasAgg, _macosx.FigureCanvas, FigureCanvasBase): |
no test coverage detected
searching dependent graphs…