Staging
v0.8.1
https://github.com/python/cpython
Revision 72959cc3f7f95a805648679739d419d5dc2f0b57 authored by Fred Drake on 11 May 2004, 14:37:25 UTC, committed by Fred Drake on 11 May 2004, 14:37:25 UTC
1 parent 04b3734
Raw File
Tip revision: 72959cc3f7f95a805648679739d419d5dc2f0b57 authored by Fred Drake on 11 May 2004, 14:37:25 UTC
use tools/getversioninfo to extract the version number from the Python
Tip revision: 72959cc
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