From: Russell Keith-Magee Date: Sat, 15 Jun 2024 00:05:30 +0000 (+0800) Subject: gh-117398: Use the correct module loader for iOS in datetime CAPI test. (#120477) X-Git-Tag: v3.14.0a1~1488 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c58e728b1391c258b224fc6d88f62f42c725026;p=thirdparty%2FPython%2Fcpython.git gh-117398: Use the correct module loader for iOS in datetime CAPI test. (#120477) Use the correct loader for iOS. --- diff --git a/Lib/test/datetimetester.py b/Lib/test/datetimetester.py index 70e2e2cccdc5..e55b738eb4a9 100644 --- a/Lib/test/datetimetester.py +++ b/Lib/test/datetimetester.py @@ -6786,6 +6786,13 @@ class CapiTest(unittest.TestCase): self.assertEqual(dt_orig, dt_rt) def test_type_check_in_subinterp(self): + # iOS requires the use of the custom framework loader, + # not the ExtensionFileLoader. + if sys.platform == "ios": + extension_loader = "AppleFrameworkLoader" + else: + extension_loader = "ExtensionFileLoader" + script = textwrap.dedent(f""" if {_interpreters is None}: import _testcapi as module @@ -6795,7 +6802,7 @@ class CapiTest(unittest.TestCase): import importlib.util fullname = '_testcapi_datetime' origin = importlib.util.find_spec('_testcapi').origin - loader = importlib.machinery.ExtensionFileLoader(fullname, origin) + loader = importlib.machinery.{extension_loader}(fullname, origin) spec = importlib.util.spec_from_loader(fullname, loader) module = importlib.util.module_from_spec(spec) spec.loader.exec_module(module)