10000 gh-98347: Add links to python-isal in the documentation by rhpvorderman · Pull Request #98637 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-98347: Add links to python-isal in the documentation #98637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
8000
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add links to python-isal in the documentation
Clearly note that this is primarily intended for users for who zlib/gzip is a bottleneck.
  • Loading branch information
rhpvorderman committed Oct 25, 2022
commit f1634392079fb708f7a3e8429e38fc57325da7b9
3 changes: 3 additions & 0 deletions Doc/library/gzip.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,9 @@ Example of how to GZIP compress a binary string::
The basic data compression module needed to support the :program:`gzip` file
format.

In case gzip (de)compression is a bottleneck the `python-isal
<https://github.com/pycompression/python-isal>`_ package speeds up
(de)compression with a mostly compatible API.

.. program:: gzip

Expand Down
4 changes: 4 additions & 0 deletions Doc/library/zlib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -341,3 +341,7 @@ the following constants:
http://www.zlib.net/manual.html
The zlib manual explains the semantics and usage of the library's many
functions.

In case zlib-compatible (de)compression is a bottleneck the `python-isal
<https://github.com/pycompression/python-isal>`_ package speeds up
(de)compression with a mostly compatible API.
0