mpl_gui.FigureRegistry.show_all#

FigureRegistry.show_all(*, block=None, timeout=None)[source]#

Show all of the Figures that the FigureRegistry knows about.

Parameters:
blockbool, optional

Whether to wait for all figures to be closed before returning from show_all.

If True block and run the GUI main loop until all figure windows are closed.

If False ensure that all figure windows are displayed and return immediately. In this case, you are responsible for ensuring that the event loop is running to have responsive figures.

Defaults to the value set on the Registry at init

timeoutfloat, optional

time to wait for all of the Figures to be closed if blocking.

If 0 block forever.

Defaults to the timeout set on the Registry at init