Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 38bcf8115138d95543388a1556d4dc8d1260b4be authored by Senthil Kumaran on 22 February 2010, 10:57:29 UTC
Merged revisions 78299 via svnmerge from
Tip revision: 38bcf81
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