Edit file File name : dynload_stub.c Content : /* This module provides the necessary stubs for when dynamic loading is not present. */ #include "Python.h" #include "importdl.h" const char *_PyImport_DynLoadFiletab[] = {NULL}; Save