Clear the Axes.
(self)
| 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.""" |
no test coverage detected