Move the seek pointer back num blocks (default is 1).
(self,num=1)
| 369 | self.finished = False |
| 370 | |
| 371 | def back(self,num=1): |
| 372 | """Move the seek pointer back num blocks (default is 1).""" |
| 373 | self.seek(self.block_index-num) |
| 374 | |
| 375 | def jump(self,num=1): |
| 376 | """Jump a given number of blocks relative to the current one. |