Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bfa3589

Browse files
committed
DOC: edits and duplicate removal
1 parent 7cf68e8 commit bfa3589

3 files changed

Lines changed: 10 additions & 15 deletions

File tree

doc/api/blocking_input_api.rst

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,3 @@
66
:no-members:
77
:no-undoc-members:
88
:show-inheritance:
9-
10-
11-
.. autosummary::
12-
:toctree: _as_gen
13-
:template: autosummary.rst
14-
:nosignatures:
15-
16-
BlockingInput
17-
BlockingMouseInput
18-
BlockingContourLabeler
19-
BlockingKeyMouseInput

doc/users/interactive.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ loop is properly integrated with the command line (see
7878

7979
In [2]: import matplotlib.pyplot as plt
8080

81-
In [3]:
82-
8381
Calling
8482

8583
::

lib/matplotlib/pyplot.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)