Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6f8c8320e9eac9bc7a7f653b43506e75916ce8e8 authored by Ɓukasz Langa on 13 May 2020, 17:31:54 UTC
Python 3.8.3
Tip revision: 6f8c832
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