Staging
v0.5.1
https://github.com/python/cpython
Revision df8e75ed5a48860afd87dee7cb7a42286703245f authored by Georg Brandl on 05 March 2011, 19:40:50 UTC, committed by Georg Brandl on 05 March 2011, 19:40:50 UTC
2 parent s ae2af38 + 6e0a8b8
Raw File
Tip revision: df8e75ed5a48860afd87dee7cb7a42286703245f authored by Georg Brandl on 05 March 2011, 19:40:50 UTC
Merge tags from 2.5.
Tip revision: df8e75e
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