https://github.com/python/cpython
Raw File
Tip revision: 865714a117aca026ecd407159bc6b380a0299bb8 authored by Pablo Galindo on 17 June 2021, 10:27:08 UTC
Python 3.10.0b3
Tip revision: 865714a
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