(self, artists)
| 1554 | artist.set_visible(False) |
| 1555 | |
| 1556 | def _draw_frame(self, artists): |
| 1557 | # Save the artists that were passed in as framedata for the other |
| 1558 | # steps (esp. blitting) to use. |
| 1559 | self._drawn_artists = artists |
| 1560 | |
| 1561 | # Make all the artists from the current frame visible |
| 1562 | for artist in artists: |
| 1563 | artist.set_visible(True) |
| 1564 | |
| 1565 | |
| 1566 | class FuncAnimation(TimedAnimation): |
nothing calls this directly
no test coverage detected