(self)
| 1973 | self._known_consolidated = True |
| 1974 | |
| 1975 | def _consolidate_inplace(self) -> None: |
| 1976 | if not self.is_consolidated(): |
| 1977 | self.blocks = _consolidate(self.blocks) |
| 1978 | self._is_consolidated = True |
| 1979 | self._known_consolidated = True |
| 1980 | self._rebuild_blknos_and_blklocs() |
| 1981 | |
| 1982 | # ---------------------------------------------------------------- |
| 1983 | # Concatenation |
no test coverage detected