Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 377510d2d9e6cb111383e124f753c73b571e577b authored by Benjamin Peterson on 11 June 2011, 14:50:21 UTC
update pydoc-topics
Tip revision: 377510d
dynload_stub.c

/* This module provides the necessary stubs for when dynamic loading is
   not present. */

#include "Python.h"
#include "importdl.h"


const struct filedescr _PyImport_DynLoadFiletab[] = {
	{0, 0}
};
back to top