Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[3.14] gh-132983: Add documentation for compression.zstd (GH-133911)#134425

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
gpshead merged 1 commit intopython:3.14frommiss-islington:backport-d862b6d-3.14
May 21, 2025
Merged
Show file tree
Hide file tree
Changes fromall 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
4 changes: 3 additions & 1 deletionDoc/library/archiving.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,13 +5,15 @@ Data Compression and Archiving
******************************

The modules described in this chapter support data compression with the zlib,
gzip, bzip2andlzma algorithms, and the creation of ZIP- and tar-format
gzip, bzip2, lzma,andzstd algorithms, and the creation of ZIP- and tar-format
archives. See also:ref:`archiving-operations` provided by the:mod:`shutil`
module.


..toctree::

compression.rst
compression.zstd.rst
zlib.rst
gzip.rst
bz2.rst
Expand Down
18 changes: 18 additions & 0 deletionsDoc/library/compression.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
The:mod:`!compression` package
===============================

..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

Loading
Loading

[8]ページ先頭

©2009-2025 Movatter.jp