Return a new sequence of saved/cached frame information.
(self)
| 1162 | return iter(self._framedata) |
| 1163 | |
| 1164 | def new_saved_frame_seq(self): |
| 1165 | """Return a new sequence of saved/cached frame information.""" |
| 1166 | # Default is the same as the regular frame sequence |
| 1167 | return self.new_frame_seq() |
| 1168 | |
| 1169 | def _draw_next_frame(self, framedata, blit): |
| 1170 | # Breaks down the drawing of the next frame into steps of pre- and |