MCPcopy Create free account
hub / github.com/ColdGrub1384/Pyto / show

Function show

site-packages/matplotlib/pyplot.py:237–254  ·  view source on GitHub ↗

Display a figure. When running in ipython with its pylab mode, display all figures and return to the ipython prompt. In non-interactive mode, display all figures and block until the figures have been closed; in interactive mode it has no effect unless figures were created p

(*args, **kw)

Source from the content-addressed store, hash-verified

235
236
237def show(*args, **kw):
238 """
239 Display a figure.
240 When running in ipython with its pylab mode, display all
241 figures and return to the ipython prompt.
242
243 In non-interactive mode, display all figures and block until
244 the figures have been closed; in interactive mode it has no
245 effect unless figures were created prior to a change from
246 non-interactive to interactive mode (not recommended). In
247 that case it displays the figures but does not block.
248
249 A single experimental keyword argument, *block*, may be
250 set to True or False to override the blocking behavior
251 described above.
252 """
253 global _show
254 return _show(*args, **kw)
255
256
257def isinteractive():

Callers 2

showMethod · 0.90
pauseFunction · 0.70

Calls 1

_showFunction · 0.85

Tested by

no test coverage detected