Staging
v0.5.1
https://github.com/python/cpython
Revision 3fccd9512b8a0c143babbc48da8245d69379a549 authored by Fred Drake on 19 January 2005, 03:45:39 UTC, committed by Fred Drake on 19 January 2005, 03:45:39 UTC
(closes SF patch #1104868)
1 parent 519d31d
Raw File
Tip revision: 3fccd9512b8a0c143babbc48da8245d69379a549 authored by Fred Drake on 19 January 2005, 03:45:39 UTC
fix a bunch of spelling errors
Tip revision: 3fccd95
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