(self, index)
| 801 | class NullBitmap(Bitmap): |
| 802 | |
| 803 | def __getitem__(self, index): |
| 804 | self._check_index(index) |
| 805 | if self.view is None: |
| 806 | return True |
| 807 | return super().__getitem__(index) |
| 808 | |
| 809 | @classmethod |
| 810 | def from_buffer(cls, buf, offset, length): |
nothing calls this directly
no test coverage detected