https://github.com/python/cpython
Raw File
Tip revision: eb0004c27163ec089201c81eb9ece470700be6c7 authored by Pablo Galindo on 01 June 2022, 13:06:32 UTC
Python 3.11.0b3
Tip revision: eb0004c
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