(self, data: bytes)
| 61 | # publicly, so declare protocols for the portions we use. |
| 62 | class _Compressor(Protocol): |
| 63 | def compress(self, data: bytes) -> bytes: |
| 64 | pass |
| 65 | |
| 66 | def flush(self, mode: int) -> bytes: |
| 67 | pass |
no outgoing calls
no test coverage detected