Clear the Axes.
(self)
| 1468 | self.__clear() |
| 1469 | |
| 1470 | def cla(self): |
| 1471 | """Clear the Axes.""" |
| 1472 | # Act as an alias, or as the superclass implementation depending on the |
| 1473 | # subclass implementation. |
| 1474 | if self._subclass_uses_cla: |
| 1475 | self.__clear() |
| 1476 | else: |
| 1477 | self.clear() |
| 1478 | |
| 1479 | class ArtistList(Sequence): |
| 1480 | """ |