Staging
v0.5.1
https://github.com/python/cpython
Revision b368e4e8ce78f5f5cd2d31c20b4f728ef73d2e92 authored by Ned Deily on 07 September 2017, 03:07:43 UTC, committed by Ned Deily on 07 September 2017, 03:17:09 UTC
1 parent dee54f6
Raw File
Tip revision: b368e4e8ce78f5f5cd2d31c20b4f728ef73d2e92 authored by Ned Deily on 07 September 2017, 03:07:43 UTC
Link to generated changelog, not website.
Tip revision: b368e4e
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