(self, encoded_data, uncompressed_length)
| 124 | return self.compressor(data)[4:] |
| 125 | |
| 126 | def decompress(self, encoded_data, uncompressed_length): |
| 127 | return self.decompressor(int32_pack(uncompressed_length) + encoded_data) |
| 128 | |
| 129 | def encode_header(self, buffer, payload_length, uncompressed_length, is_self_contained): |
| 130 | if payload_length > Segment.MAX_PAYLOAD_LENGTH: |
no outgoing calls
no test coverage detected