You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The python-zstandard library previously lacked an open() method capable of opening zstd files in various modes (read/write binary/text). Such a function now exists, so util/file.py should replace the custom mode selection in zstd_open() with zstandard.open(). We should preserve the zstd_open() function for backward compatibility, and so a custom compressor can be passed in that has been configured to use multiple threads.
The text was updated successfully, but these errors were encountered:
The
python-zstandard
library previously lacked anopen()
method capable of opening zstd files in various modes (read/write binary/text). Such a function now exists, so util/file.py should replace the custom mode selection inzstd_open()
withzstandard.open()
. We should preserve thezstd_open()
function for backward compatibility, and so a custom compressor can be passed in that has been configured to use multiple threads.The text was updated successfully, but these errors were encountered: