Implement Preset Argument in tarfile.open Function and Add Test Coverage #11251
+48
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request addresses the and Closes #11072 issue. The preset argument was missing from the
tarfile.openfunction in thetarfile.pyistub file. This argument is used to set the compression level when opening atarfilein write mode with the xz method.Changes made:
tarfile.pyi.How to Run the Test:
mypy --custom-typeshed-dir=<path_to_the_typeshed_dir> tests/test_tarfile.pyThis will execute the script and print the output to the console.
How the Test Works:
The test script checks the following scenarios:
By covering these scenarios, the test script ensures that the preset argument is correctly recognized and handled by the tarfile.open function.