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

Method clear

lib/matplotlib/axes/_base.py:1461–1468  ·  view source on GitHub ↗

Clear the Axes.

(self)

Source from the content-addressed store, hash-verified

1459 self.stale = True
1460
1461 def clear(self):
1462 """Clear the Axes."""
1463 # Act as an alias, or as the superclass implementation depending on the
1464 # subclass implementation.
1465 if self._subclass_uses_cla:
1466 self.cla()
1467 else:
1468 self.__clear()
1469
1470 def cla(self):
1471 """Clear the Axes."""

Callers 5

__init__Method · 0.95
claMethod · 0.95
reload_libraryFunction · 0.45
render_figuresFunction · 0.45
__clearMethod · 0.45

Calls 2

claMethod · 0.95
__clearMethod · 0.95

Tested by

no test coverage detected