MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / start_main_loop

Method start_main_loop

lib/matplotlib/backend_bases.py:2813–2822  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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):

Callers 1

pyplot_showMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected