Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 876c4318d4c62d2216ed423aad2adad1523a8eef authored by Thomas Heller on 04 December 2003, 20:25:10 UTC
Version numbers for Python 2.3.3c1.
Tip revision: 876c431
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