Compress.flush([mode])
All pending input is processed, and a bytes object containing the remaining compressed output is returned. mode can be selected from the constants Z_SYNC_FLUSH
, Z_FULL_FLUSH
, or Z_FINISH
, defaulting to Z_FINISH
. Z_SYNC_FLUSH
and Z_FULL_FLUSH
allow compressing further bytestrings of data, while Z_FINISH
finishes the compressed stream and prevents compressing any more data. After calling flush()
with mode set to Z_FINISH
, the compress()
method cannot be called again; the only realistic action is to delete the object.
Please login to continue.