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)
| 235 | |
| 236 | |
| 237 | def 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 | |
| 257 | def isinteractive(): |