Skip to content
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

[3.11] gh-116831: Fixes tests for c extension in WASI for Python 3.11 (GH-116831) #116933

Merged
merged 1 commit into from Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions Lib/test/test_imp.py
Expand Up @@ -10,6 +10,7 @@
from test.support import os_helper
from test.support import script_helper
from test.support import warnings_helper
from test.support import is_wasi
import unittest
import warnings
imp = warnings_helper.import_deprecated('imp')
Expand All @@ -23,6 +24,8 @@ def requires_load_dynamic(meth):
"""Decorator to skip a test if not running under CPython or lacking
imp.load_dynamic()."""
meth = support.cpython_only(meth)
if is_wasi:
return unittest.skipIf(True, 'Not supoorted in WASI')(meth)
return unittest.skipIf(getattr(imp, 'load_dynamic', None) is None,
'imp.load_dynamic() required')(meth)

Expand Down