(self)
| 192 | return output.getvalue() |
| 193 | |
| 194 | def flush(self) -> bytes: |
| 195 | if not self.seen_data: |
| 196 | return b"" |
| 197 | ret = self.decompressor.flush() # note: this is a no-op |
| 198 | if not self.decompressor.eof: |
| 199 | raise DecodingError("Zstandard data is incomplete") # pragma: no cover |
| 200 | return bytes(ret) |
| 201 | |
| 202 | |
| 203 | class MultiDecoder(ContentDecoder): |
nothing calls this directly
no test coverage detected