Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: e95a8f6ff1830bcd59e149b52174a82276fed0f3 authored by Benjamin Peterson on 09 April 2012, 23:04:04 UTC
bump to 2.7.3 final
Tip revision: e95a8f6
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