Skip to content

Refactor: Use is_wasm32 flag for is_emscripten or is_wasi for generic checks #136815

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 7 commits into from
Jul 22, 2025
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
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Lib/test/support/__init__.py
Co-authored-by: Brett Cannon <brett@python.org>
  • Loading branch information
anistark and brettcannon authored Jul 21, 2025
commit aea29e12f9f077400115907c685638015b7b9dcc
1 change: 0 additions & 1 deletion Lib/test/support/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3151,7 +3151,6 @@ def linked_to_musl():

# emscripten (at least as far as we're concerned) and wasi use musl,
# but platform doesn't know how to get the version, so set it to zero.
# set zero for wasm in general.
if is_wasm32:
_linked_to_musl = (0, 0, 0)
return _linked_to_musl
Expand Down
Loading