https://github.com/python/cpython
Raw File
Tip revision: 2305ca51448552542b2414186252123a8dc87db7 authored by Thomas Wouters on 07 December 2023, 20:31:58 UTC
Python 3.12.1
Tip revision: 2305ca5
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