@@ -345,18 +345,21 @@ def isinteractive():
345345
346346 - newly created figures will be shown immediately
347347 - figures will automatically redraw on change
348- - pyplot.show will not block by default
348+ - `. pyplot.show` will not block by default
349349
350350 If not in interactive mode then:
351351
352352 - newly created figures and changes to figures will
353353 not be reflected until explicitly asked to be
354- - pyplot.show will block by default
354+ - `. pyplot.show` will block by default
355355
356356 See Also
357357 --------
358358 ion : enable interactive mode
359359 ioff : disable interactive mode
360+
361+ show : show windows (and maybe block)
362+ pause : show widows, run GUI event loop, and block for a time
360363 """
361364 return matplotlib .is_interactive ()
362365
@@ -370,6 +373,8 @@ def ioff():
370373 ion : enable interactive mode
371374 isinteractive : query current state
372375
376+ show : show windows (and maybe block)
377+ pause : show widows, run GUI event loop, and block for a time
373378 """
374379 matplotlib .interactive (False )
375380 uninstall_repl_displayhook ()
@@ -383,6 +388,9 @@ def ion():
383388 --------
384389 ioff : disable interactive mode
385390 isinteractive : query current state
391+
392+ show : show windows (and maybe block)
393+ pause : show widows, run GUI event loop, and block for a time
386394 """
387395 matplotlib .interactive (True )
388396 install_repl_displayhook ()
0 commit comments