Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
3 changes: 3 additions & 0 deletions Doc/library/gzip.rst
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,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 @@ -353,3 +353,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.
Loading