Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: e948ea01eb6635d544a2100ceeb18933b6e37753 authored by Barry Warsaw on 01 October 2009, 23:39:49 UTC
Bump to 2.6.3
Tip revision: e948ea0
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