https://github.com/python/cpython
Raw File
Tip revision: deaf509e8fc6e0363bd6f26d52ad42f976ec42f2 authored by Pablo Galindo on 24 October 2022, 17:34:46 UTC
Python 3.11.0
Tip revision: deaf509
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