8000 bpo-26253: Add compressionlevel to tarfile stream by jarondl · Pull Request #2962 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-26253: Add compressionlevel to tarfile stream #2962

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 5 commits into from
Jun 25, 2022
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
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
  • Loading branch information
serhiy-storchaka and AA-Turner authored Jun 17, 2022
commit f48acbdc80b3dffbf9d82cfd8f26cdb354a8c1bf
2 changes: 1 addition & 1 deletion Doc/library/tarfile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Some facts and figures:
.. versionchanged:: 3.6
The *name* parameter accepts a :term:`path-like object`.

.. versionchanged:: 3.7
.. versionchanged:: 3.12
The *compresslevel* keyword argument also works for streams.


Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Adjustable compression level for tarfile streams.
Allow adjustable compression level for tarfile streams in
:function:`tarfile.open`.
0