https://github.com/python/cpython
Raw File
Tip revision: 1dd9be6584413fbfa823f37a224f101b819505d1 authored by Pablo Galindo on 06 December 2022, 18:30:42 UTC
Python 3.10.9
Tip revision: 1dd9be6
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