https://github.com/python/cpython
Raw File
Tip revision: a04a0f65858da840740886fe60500d779a52a6e3 authored by Ɓukasz Langa on 19 March 2024, 16:18:11 UTC
Post 3.9.19
Tip revision: a04a0f6
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