(self, length: int = 0)
| 317 | return result |
| 318 | |
| 319 | def flush(self, length: int = 0) -> bytes: |
| 320 | return ( |
| 321 | self._decompressor.flush(length) |
| 322 | if length > 0 |
| 323 | else self._decompressor.flush() |
| 324 | ) |
| 325 | |
| 326 | @property |
| 327 | def data_available(self) -> bool: |