https://github.com/python/cpython
Raw File
Tip revision: 8b6ee5ba3bd08368ba3c763cea28ce1464a88e62 authored by Pablo Galindo on 02 October 2023, 13:26:51 UTC
Python 3.11.6
Tip revision: 8b6ee5b
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