Staging
v0.5.1
https://github.com/python/cpython
Revision a3a505076efc19ec23669370778c5fa22d030ffa authored by Mark Dickinson on 03 April 2010, 18:17:54 UTC, committed by Mark Dickinson on 03 April 2010, 18:17:54 UTC
1 parent 5f516ed
Raw File
Tip revision: a3a505076efc19ec23669370778c5fa22d030ffa authored by Mark Dickinson on 03 April 2010, 18:17:54 UTC
Silence DeprecationWarnings from uses of has_key and <> in plat-mac.
Tip revision: a3a5050
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