Staging
v0.5.1
https://github.com/python/cpython
Revision bac3d91cad7a08f05ab225b995d8da22c88c2e69 authored by Fred Drake on 25 January 2005, 07:53:30 UTC, committed by Fred Drake on 25 January 2005, 07:53:30 UTC
1 parent 03bdf17
Raw File
Tip revision: bac3d91cad7a08f05ab225b995d8da22c88c2e69 authored by Fred Drake on 25 January 2005, 07:53:30 UTC
bump version number to prepare for a release
Tip revision: bac3d91
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