Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e9d1847
Remove heaptypes from isal_zlib module
rhpvorderman Jul 28, 2022
4055cf8
Remove redundant header file
rhpvorderman Jul 28, 2022
c818486
Optimize include order
rhpvorderman Jul 28, 2022
b0ad91c
Remove state from igzip_lib
rhpvorderman Jul 28, 2022
b247238
Only initialize error once
rhpvorderman Jul 28, 2022
47e6edc
Simplify compress argument parser
rhpvorderman Jul 28, 2022
9442353
Simpler argument parsing for isal_zlib.decompress
rhpvorderman Jul 28, 2022
82cd0c9
Custom parser for adler32
rhpvorderman Jul 28, 2022
a52d46d
Custom parser for crc32, remove contiguity check
rhpvorderman Jul 28, 2022
e45600c
Simplify compressobj parser
rhpvorderman Jul 28, 2022
cbdbaab
Simplify decompressobj parser
rhpvorderman Jul 28, 2022
e9faa2d
simplify Compress.compress parser
rhpvorderman Jul 28, 2022
cda92a9
Remove unused variable
rhpvorderman Jul 28, 2022
60b1d76
Simplify decompress.decompress parser
rhpvorderman Jul 28, 2022
edd7d97
Custom parser for decompress.flush
rhpvorderman Jul 28, 2022
f772e19
Custom compress flush parser
rhpvorderman Jul 28, 2022
2d340fe
Custom parser for igzip_lib compress
rhpvorderman Jul 28, 2022
8aa80d1
Fix memory leak by releasing buffer
rhpvorderman Jul 28, 2022
c49cc36
Custom parser or igzip_lib.decompress
rhpvorderman Jul 28, 2022
e70b361
Custom parser for decompress
rhpvorderman Jul 28, 2022
13a33b0
Custom parser for IgzipDecompressor.__init__
rhpvorderman Jul 28, 2022
19b7494
Use C99 style struct allocation
rhpvorderman Jul 28, 2022
d2effdc
Remove CPython argparsing code
rhpvorderman Jul 28, 2022
bed212b
Readd error for backwards compatibility
rhpvorderman Jul 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ that PyPy is no longer supported.
faster.
+ igzip.decompress has 30% less overhead when called.
+ ``isal_zlib`` functions now raise ``isal_zlib.error`` on error.
``isal_zlib.IsalError`` has been removed.
+ The base class for ``isal_zlib.error`` and ``igzip_lib.IsalError`` is now
``Exception`` instead of ``OSError``.
+ GzipReader now uses larger input and output buffers (128k) by default and
Expand Down
Loading