Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 580fbb018fd0844806119614d752b41fc69660f9 authored by Ɓukasz Langa on 20 July 2020, 13:01:32 UTC
Python 3.8.5
Tip revision: 580fbb0
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