https://github.com/python/cpython
Raw File
Tip revision: f2f3f537829ab0ef6948be5ee7f46b8ce8213ff2 authored by Ɓukasz Langa on 13 January 2022, 21:21:23 UTC
Python 3.9.10
Tip revision: f2f3f53
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