MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / pause

Method pause

lib/matplotlib/animation.py:1405–1410  ·  view source on GitHub ↗

Pause the animation.

(self)

Source from the content-addressed store, hash-verified

1403 return self.to_jshtml()
1404
1405 def pause(self):
1406 """Pause the animation."""
1407 self.event_source.stop()
1408 if self._blit:
1409 for artist in self._drawn_artists:
1410 artist.set_animated(False)
1411
1412 def resume(self):
1413 """Resume the animation."""

Callers 9

_stepMethod · 0.80
_test_interactive_implFunction · 0.80
_test_thread_implFunction · 0.80
blitting.pyFile · 0.80
animation_demo.pyFile · 0.80
toggle_pauseMethod · 0.80

Calls 2

stopMethod · 0.80
set_animatedMethod · 0.45