https://github.com/python/cpython
Raw File
Tip revision: 6cc6b13308b3202270ea7ac0ee776762a66f6a2f authored by Pablo Galindo on 05 September 2022, 12:02:13 UTC
Python 3.10.7
Tip revision: 6cc6b13
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