Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-127146: Mark test_bz2 tests with requires_subprocess#127562
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
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This doesn't seem quite right - iOS and Android don't support subprocesses, but have no problem implementing the bz2 tests. How are you seeing this problem manifest? |
|
Looking at defext_decompress(data):globalhas_cmdline_bunzip2ifhas_cmdline_bunzip2isNone:has_cmdline_bunzip2=bool(shutil.which('bunzip2'))ifhas_cmdline_bunzip2:returnsubprocess.check_output(['bunzip2'],input=data)else:returnbz2.decompress(data) Looks like the problem is that |
Okay the problem is that in
|
Thanks@freakboy3742! |
Uh oh!
There was an error while loading.Please reload this page.