Staging
v0.5.1
https://github.com/python/cpython
Revision 112d20d5274acbb606acfe3594fd10aa10287b52 authored by cvs2svn on 20 July 2001, 14:55:28 UTC, committed by cvs2svn on 20 July 2001, 14:55:28 UTC
1 parent 2e03ba8
Raw File
Tip revision: 112d20d5274acbb606acfe3594fd10aa10287b52 authored by cvs2svn on 20 July 2001, 14:55:28 UTC
This commit was manufactured by cvs2svn to create tag 'r211'.
Tip revision: 112d20d
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