https://github.com/python/cpython
Raw File
Tip revision: 076d169ebbe59f7035eaa28d33d517bcb375f342 authored by Thomas Wouters on 12 March 2024, 17:34:05 UTC
Python 3.13.0a5
Tip revision: 076d169
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