Staging
v0.5.1
https://github.com/python/cpython
Revision 8da6f1b66811f6cf680dd0bd5762ff051e42d034 authored by Georg Brandl on 06 March 2007, 11:52:33 UTC, committed by Georg Brandl on 06 March 2007, 11:52:33 UTC
1 parent 0520e03
Raw File
Tip revision: 8da6f1b66811f6cf680dd0bd5762ff051e42d034 authored by Georg Brandl on 06 March 2007, 11:52:33 UTC
Patch #1672481: fix bug in idlelib.MultiCall.
Tip revision: 8da6f1b
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