https://github.com/python/cpython
Raw File
Tip revision: 95c340a86b828cac6c0a2e4f2fa8a96695388c73 authored by Ɓukasz Langa on 19 March 2024, 16:18:53 UTC
Post 3.8.19
Tip revision: 95c340a
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