(self,index)
| 341 | self.block_index = 0 |
| 342 | |
| 343 | def _validate_index(self,index): |
| 344 | if index<0 or index>=self.nblocks: |
| 345 | raise ValueError('invalid block index %s' % index) |
| 346 | |
| 347 | def _get_index(self,index): |
| 348 | """Get the current block index, validating and checking status. |
no outgoing calls
no test coverage detected