mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Some checks are pending
Tests / Android (aarch64) (push) Blocked by required conditions
Tests / Android (x86_64) (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Windows MSI (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if the ABI has changed (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / Cross build Linux (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
Lint / lint (push) Waiting to run
GH-123299: Copyedit 3.14 What's New: New and Improved Modules (GH-139530)
(cherry picked from commit c33dc154b4)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
20 lines
835 B
ReStructuredText
20 lines
835 B
ReStructuredText
The :mod:`!compression` package
|
|
===============================
|
|
|
|
.. module:: compression
|
|
|
|
.. versionadded:: 3.14
|
|
|
|
The :mod:`!compression` package contains the canonical compression modules
|
|
containing interfaces to several different compression algorithms. Some of
|
|
these modules have historically been available as separate modules; those will
|
|
continue to be available under their original names for compatibility reasons,
|
|
and will not be removed without a deprecation cycle. The use of modules in
|
|
:mod:`!compression` is encouraged where practical.
|
|
|
|
* :mod:`!compression.bz2` -- Re-exports :mod:`bz2`
|
|
* :mod:`!compression.gzip` -- Re-exports :mod:`gzip`
|
|
* :mod:`!compression.lzma` -- Re-exports :mod:`lzma`
|
|
* :mod:`!compression.zlib` -- Re-exports :mod:`zlib`
|
|
* :mod:`compression.zstd` -- Wrapper for the Zstandard compression library
|
|
|