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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Add a gzip_ng_threaded module that contains the gzip_ng_threaded.open
function. This allows using multithreaded compression as well as escaping the
GIL.
The internal gzip_ng._GzipReader has been rewritten in C. As a result the
overhead of decompressing files has significantly been reduced.
The gzip_ng._GzipReader in C is now used in gzip_ng.decompress. The _GzipReader also can read from objects that support the buffer protocol.
This has reduced overhead significantly.
Fix some unclosed buffer errors in the gzip_ng CLI.