-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
gh-132983: Add documentation for compression.zstd #133911
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,25 @@ | ||||||||||||||||||||||||||||||
The :mod:`!compression` package | ||||||||||||||||||||||||||||||
================================= | ||||||||||||||||||||||||||||||
Comment on lines
+1
to
+2
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
.. versionadded:: 3.14 | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
.. note:: | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
Several modules in :mod:`!compression` re-export modules that currently | ||||||||||||||||||||||||||||||
exist at the repository top-level. These re-exported modules are the new | ||||||||||||||||||||||||||||||
canonical import name for the respective top-level module. The existing | ||||||||||||||||||||||||||||||
modules are not currently deprecated and will not be removed prior to Python | ||||||||||||||||||||||||||||||
3.19, but users are encouraged to migrate to the new import names when | ||||||||||||||||||||||||||||||
feasible. | ||||||||||||||||||||||||||||||
Comment on lines
+6
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
* :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 | ||||||||||||||||||||||||||||||
Comment on lines
+15
to
+23
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New algorithm at the end?