https://github.com/python/cpython
Raw File
Tip revision: 4ae1a0ecaffe4320fe9774fad1f395f732c17959 authored by Thomas Wouters on 24 October 2022, 22:07:03 UTC
Python 3.12.0a1
Tip revision: 4ae1a0e
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