https://github.com/python/cpython
Raw File
Tip revision: f43e7678a1443b2583fc9bfba091b8ca7e38f075 authored by Ɓukasz Langa on 06 September 2022, 18:54:44 UTC
Python 3.8.14
Tip revision: f43e767
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