https://github.com/python/cpython
Raw File
Tip revision: 3d5d3f7af6498effbc60a3db1d2b5f41ae6c0a75 authored by Thomas Wouters on 10 January 2023, 12:07:54 UTC
Python 3.12.0a4
Tip revision: 3d5d3f7
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