(self, block)
| 413 | |
| 414 | # Close A Block |
| 415 | def close_block(self, block): |
| 416 | assert type(block) is int and 1 <= block <= self.__blocks |
| 417 | assert self.__disk.status(block) == self.STATUS.b1 |
| 418 | self.__disk.close(block) |
| 419 | |
| 420 | # Get Status Information |
| 421 | def status(self, block): |
no test coverage detected