https://github.com/python/cpython
Raw File
Tip revision: b861ba4a8247af8159df1e01d33157cf57705067 authored by Thomas Wouters on 04 April 2023, 15:51:44 UTC
Python 3.12.0a7
Tip revision: b861ba4
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