https://github.com/python/cpython
Raw File
Tip revision: 9a2d5311d1201818d3942b1ea1ab2ad290b45254 authored by Ɓukasz Langa on 06 June 2023, 13:32:21 UTC
Python 3.8.17
Tip revision: 9a2d531
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