We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3f831 commit ff71f93Copy full SHA for ff71f93
Lib/test/test_importlib/util.py
@@ -8,7 +8,7 @@
8
import os.path
9
from test import support
10
from test.support import import_helper
11
-from test.support import is_apple_mobile
+from test.support import needs_apple_fworks
12
from test.support import os_helper
13
import unittest
14
import sys
@@ -48,7 +48,7 @@ def _extension_details():
48
for ext in machinery.EXTENSION_SUFFIXES:
49
# Apple mobile platforms mechanically load .so files,
50
# but the findable files are labelled .fwork
51
- if is_apple_mobile:
+ if needs_apple_fworks:
52
ext = ext.replace(".so", ".fwork")
53
54
filename = EXTENSIONS.name + ext
0 commit comments