Return a new sequence of frame information.
(self)
| 1157 | return False |
| 1158 | |
| 1159 | def new_frame_seq(self): |
| 1160 | """Return a new sequence of frame information.""" |
| 1161 | # Default implementation is just an iterator over self._framedata |
| 1162 | return iter(self._framedata) |
| 1163 | |
| 1164 | def new_saved_frame_seq(self): |
| 1165 | """Return a new sequence of saved/cached frame information.""" |
no outgoing calls
no test coverage detected