diff options
author | Sam Gross <colesbury@gmail.com> | 2023-10-04 22:50:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 22:50:29 (GMT) |
commit | cf6f23b0e3cdef33f23967cf954a2ca4d1fa6528 (patch) | |
tree | 81af760a78ee03470d1fb1abbd13d35a24ad6cc3 /Python/import.c | |
parent | 80dc39e1dc2abc809f448cba5d2c5b9c1c631e11 (diff) | |
download | cpython-cf6f23b0e3cdef33f23967cf954a2ca4d1fa6528.zip cpython-cf6f23b0e3cdef33f23967cf954a2ca4d1fa6528.tar.gz cpython-cf6f23b0e3cdef33f23967cf954a2ca4d1fa6528.tar.bz2 |
gh-88402: Add new sysconfig variables on Windows (GH-110049)
Co-authored-by: Filipe LaĆns <filipe.lains@gmail.com>
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 5636968..cafdd83 100644 --- a/Python/import.c +++ b/Python/import.c @@ -17,7 +17,7 @@ #include "pycore_weakref.h" // _PyWeakref_GET_REF() #include "marshal.h" // PyMarshal_ReadObjectFromString() -#include "importdl.h" // _PyImport_DynLoadFiletab +#include "pycore_importdl.h" // _PyImport_DynLoadFiletab #include "pydtrace.h" // PyDTrace_IMPORT_FIND_LOAD_START_ENABLED() #include <stdbool.h> // bool |