https://github.com/python/cpython
Raw File
Tip revision: 976ea78599d71f22e9c0fefc2dc37c1d9fc835a4 authored by Ɓukasz Langa on 19 March 2024, 21:42:28 UTC
Python 3.10.14
Tip revision: 976ea78
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