(self, block, status)
| 11 | |
| 12 | # Change Status Information |
| 13 | def edit(self, block, status): |
| 14 | assert type(block) is int and 0 <= block < self.__blocks |
| 15 | assert type(status) is int and 1 <= status <= 255 |
| 16 | assert self.__BIT[block] != 0 |
| 17 | self.__BIT[block] = status |
| 18 | |
| 19 | ################################################################################ |
| 20 |
no outgoing calls
no test coverage detected