Start the main event loop. This method is called by `.FigureManagerBase.pyplot_show`, which is the implementation of `.pyplot.show`. To customize the behavior of `.pyplot.show`, interactive backends should usually override `~.FigureManagerBase.start_main_lo
(cls)
| 2811 | |
| 2812 | @classmethod |
| 2813 | def start_main_loop(cls): |
| 2814 | """ |
| 2815 | Start the main event loop. |
| 2816 | |
| 2817 | This method is called by `.FigureManagerBase.pyplot_show`, which is the |
| 2818 | implementation of `.pyplot.show`. To customize the behavior of |
| 2819 | `.pyplot.show`, interactive backends should usually override |
| 2820 | `~.FigureManagerBase.start_main_loop`; if more customized logic is |
| 2821 | necessary, `~.FigureManagerBase.pyplot_show` can also be overridden. |
| 2822 | """ |
| 2823 | |
| 2824 | @classmethod |
| 2825 | def pyplot_show(cls, *, block=None): |