https://github.com/python/cpython
Raw File
Tip revision: 6abddd9f6afdddc09031989e0deb25e301ecf315 authored by Thomas Wouters on 06 February 2024, 20:16:03 UTC
Python 3.12.2
Tip revision: 6abddd9
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