diff options
author | Hood Chatham <roberthoodchatham@gmail.com> | 2023-06-30 00:20:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 00:20:49 (GMT) |
commit | e7bc8d16364bde54487eab349a29d58345e35f28 (patch) | |
tree | 24025e6c65bd886c308eb984b12380d590e3aad9 /Python/importdl.c | |
parent | cea9d4ea82abcb2c6f1d83a2fe819859da4bbda4 (diff) | |
download | cpython-e7bc8d16364bde54487eab349a29d58345e35f28.zip cpython-e7bc8d16364bde54487eab349a29d58345e35f28.tar.gz cpython-e7bc8d16364bde54487eab349a29d58345e35f28.tar.bz2 |
gh-106210 Remove Emscripten import trampoline (#106211)
It's no longer necessary.
Co-authored-by: Brett Cannon <brett@python.org>
Diffstat (limited to 'Python/importdl.c')
-rw-r--r-- | Python/importdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/importdl.c b/Python/importdl.c index 3a3a30d..eb6b808 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -166,7 +166,7 @@ _PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *fp) /* Package context is needed for single-phase init */ oldcontext = _PyImport_SwapPackageContext(newcontext); - m = _PyImport_InitFunc_TrampolineCall(p0); + m = p0(); _PyImport_SwapPackageContext(oldcontext); if (m == NULL) { |