https://github.com/python/cpython
Raw File
Tip revision: 0fb18b02c8ad56299d6a2910be0bab8ad601ef24 authored by Thomas Wouters on 02 October 2023, 11:44:36 UTC
Python 3.12.0
Tip revision: 0fb18b0
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