https://github.com/python/cpython
Raw File
Tip revision: 882f62bd93fcd5775068c3b3d1e5ce62f2feaba3 authored by Ɓukasz Langa on 19 March 2024, 15:48:02 UTC
Python 3.9.19
Tip revision: 882f62b
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