https://github.com/python/cpython
Raw File
Tip revision: ad056f03aee8000a1564a1d17f655f8713c48e48 authored by Thomas Wouters on 13 October 2023, 08:50:46 UTC
Python 3.13.0a1
Tip revision: ad056f0
dynload_stub.c

/* This module provides the necessary stubs for when dynamic loading is
   not present. */

#include "Python.h"
#include "pycore_importdl.h"


const char *_PyImport_DynLoadFiletab[] = {NULL};
back to top