Staging
v0.5.1
https://github.com/python/cpython
Revision 334b5b20f284ff4b44cfe3a035e1654b23390028 authored by Raymond Hettinger on 26 March 2006, 03:11:29 UTC, committed by Raymond Hettinger on 26 March 2006, 03:11:29 UTC
1 parent e2ac4ab
Raw File
Tip revision: 334b5b20f284ff4b44cfe3a035e1654b23390028 authored by Raymond Hettinger on 26 March 2006, 03:11:29 UTC
Tighten an overbroad and misleading assertion.
Tip revision: 334b5b2
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