https://github.com/python/cpython
Raw File
Tip revision: d5650a1738fe34f6e1db4af5f4c4edb7cae90a36 authored by Ned Deily on 04 September 2021, 21:58:07 UTC
Post release updates
Tip revision: d5650a1
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