https://github.com/python/cpython
Raw File
Tip revision: 2cd268a3a9340346dd86b66db2e9b428b3f878fc authored by Pablo Galindo on 06 December 2021, 17:56:39 UTC
Python 3.10.1
Tip revision: 2cd268a
dynload_stub.c

/* This module provides the necessary stubs for when dynamic loading is
   not present. */

#include "Python.h"
#include "importdl.h"


const char *_PyImport_DynLoadFiletab[] = {NULL};
back to top