https://github.com/python/cpython
Raw File
Tip revision: 7c12e4835ebe52287acd200a2e76b533413b15d0 authored by Pablo Galindo on 05 October 2021, 12:42:52 UTC
Python 3.11.0a1
Tip revision: 7c12e48
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