8000 gh-101334: Don't force USTAR format in test_tarfile. by gpshead · Pull Request #101572 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-101334: Don't force USTAR format in test_tarfile. #101572

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
Feb 5, 2023
Merged
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
8000
Diff view
Diff view
Prev Previous commit
Next Next commit
- trailing space
  • Loading branch information
gpshead committed Feb 5, 2023
commit 5b8c07e140381cec279cf256d132df23e1332195
2 changes: 1 addition & 1 deletion Lib/test/test_tarfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def test_add_dir_getmember(self):
@unittest.skipIf(
os.getuid() > 0o777_7777 or os.getgid() > 0o777_7777,
f"{os.getuid()=} or {os.getgid()=} too high for USTAR format."
)
)
def add_dir_and_getmember(self, name):
with os_helper.temp_cwd():
with tarfile.open(tmpname, 'w') as tar:
Expand Down
0