https://github.com/python/cpython
Raw File
Tip revision: 1016ef37904c7ddc16fb18d3369b2a78cf428fa4 authored by Ɓukasz Langa on 30 August 2021, 19:02:15 UTC
Python 3.9.7
Tip revision: 1016ef3
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