Staging
v0.5.1
https://github.com/python/cpython
Revision e434b3b68114a271d615848515f96de135e501b3 authored by Raymond Hettinger on 15 December 2010, 19:20:01 UTC, committed by Raymond Hettinger on 15 December 2010, 19:20:01 UTC
1 parent d00862a
Raw File
Tip revision: e434b3b68114a271d615848515f96de135e501b3 authored by Raymond Hettinger on 15 December 2010, 19:20:01 UTC
Add intro to the changed modules section.
Tip revision: e434b3b
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