https://github.com/python/cpython
Raw File
Tip revision: b973ab3c3b333976d375c0cd4129cc3377769ea8 authored by Thomas Wouters on 18 September 2023, 19:47:01 UTC
Python 3.12.0rc3
Tip revision: b973ab3
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