Staging
v0.5.1
https://github.com/python/cpython
Revision 638e5e39cf4c6994e46e2810b43dfd7856495a90 authored by Jack Jansen on 06 September 2001, 16:33:57 UTC, committed by Jack Jansen on 06 September 2001, 16:33:57 UTC
1 parent 745e366
Raw File
Tip revision: 638e5e39cf4c6994e46e2810b43dfd7856495a90 authored by Jack Jansen on 06 September 2001, 16:33:57 UTC
Added targets to install the application, and to install mac-additions
Tip revision: 638e5e3
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