Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 9bf51fefd011de3a439b7553e65a759c4469285d authored by Barry Warsaw on 01 October 2013, 00:37:45 UTC
Bump copyright years.
Tip revision: 9bf51fe
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