Staging
v0.5.1
https://github.com/python/cpython
Revision bc3e13818be01868117716bff6e6ed47609500bd authored by Kurt B. Kaiser on 11 May 2011, 17:48:54 UTC, committed by Kurt B. Kaiser on 11 May 2011, 17:48:54 UTC
2 parent s 57e6eac + e147806
Raw File
Tip revision: bc3e13818be01868117716bff6e6ed47609500bd authored by Kurt B. Kaiser on 11 May 2011, 17:48:54 UTC
Merge from 3.1
Tip revision: bc3e138
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