https://github.com/python/cpython
Raw File
Tip revision: 376d66eb5080cf8076d767b0916c103463343963 authored by Ɓukasz Langa on 24 August 2023, 17:51:41 UTC
Python 3.9.18
Tip revision: 376d66e
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