https://github.com/python/cpython
Raw File
Tip revision: 469ede4dbc3ef4146803424a9a3a1e16391f5013 authored by Ɓukasz Langa on 19 March 2024, 15:40:39 UTC
Python 3.8.19
Tip revision: 469ede4
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