(self, pos)
| 360 | self.getcomptype(), self.getcompname()) |
| 361 | |
| 362 | def setpos(self, pos): |
| 363 | if pos < 0 or pos > self._nframes: |
| 364 | raise Error('position not in range') |
| 365 | self._soundpos = pos |
| 366 | self._data_seek_needed = 1 |
| 367 | |
| 368 | def readframes(self, nframes): |
| 369 | if self._data_seek_needed: |