We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ee229 commit 68cad54Copy full SHA for 68cad54
lib/matplotlib/pyplot.py
@@ -583,7 +583,10 @@ def show(*args, **kwargs) -> None:
583
584
If `False` ensure that all figure windows are displayed and return
585
immediately. In this case, you are responsible for ensuring
586
- that the event loop is running to have responsive figures.
+ that the event loop is running to have responsive figures; in the
587
+ simplest form by calling ``fig.canvas.manager.mainloop()`` which is
588
+ what a blocking show is doing internally. Note that the GUI mainloop
589
+ itself is blocking.
590
591
Defaults to True in non-interactive mode and to False in interactive
592
mode (see `.pyplot.isinteractive`).
0 commit comments