Staging
v0.5.1
https://github.com/python/cpython
Revision 48e602a2da9a20ec1d6d7fdcd45439187fe11344 authored by Raymond Hettinger on 04 December 2003, 21:42:31 UTC, committed by Raymond Hettinger on 04 December 2003, 21:42:31 UTC
1 parent 5115a30
Raw File
Tip revision: 48e602a2da9a20ec1d6d7fdcd45439187fe11344 authored by Raymond Hettinger on 04 December 2003, 21:42:31 UTC
Add newsitem for a bugfix backport.
Tip revision: 48e602a
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