Staging
v0.8.1
https://github.com/python/cpython
Revision 150d61d37ee7f6b0103a40e59d5473fec9a5eddf authored by Brett Cannon on 13 February 2005, 22:56:41 UTC, committed by Brett Cannon on 13 February 2005, 22:56:41 UTC
1 parent 688a0ca
Raw File
Tip revision: 150d61d37ee7f6b0103a40e59d5473fec9a5eddf authored by Brett Cannon on 13 February 2005, 22:56:41 UTC
Update refences to "Macintosh" to reflect the state of affairs for OS X and not
Tip revision: 150d61d
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