(self)
| 76 | raise DecodingError(str(exc)) from exc |
| 77 | |
| 78 | def flush(self) -> bytes: |
| 79 | try: |
| 80 | return self.decompressor.flush() |
| 81 | except zlib.error as exc: # pragma: no cover |
| 82 | raise DecodingError(str(exc)) from exc |
| 83 | |
| 84 | |
| 85 | class GZipDecoder(ContentDecoder): |
nothing calls this directly
no test coverage detected