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

Method is_saving

lib/matplotlib/backend_bases.py:1846–1851  ·  view source on GitHub ↗

Return whether the renderer is in the process of saving to a file, rather than rendering for an on-screen buffer.

(self)

Source from the content-addressed store, hash-verified

1844 self._is_idle_drawing = False
1845
1846 def is_saving(self):
1847 """
1848 Return whether the renderer is in the process of saving
1849 to a file, rather than rendering for an on-screen buffer.
1850 """
1851 return self._is_saving
1852
1853 def blit(self, bbox=None):
1854 """Blit the canvas in bbox (default entire canvas)."""

Callers 6

_startMethod · 0.80
_clearMethod · 0.80
clearMethod · 0.80
update_backgroundMethod · 0.80
drawMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected