Staging
v0.5.1
https://github.com/python/cpython
Revision 9ad526fac3dc3b0c98f706fb052709754ff9cd5d authored by Fred Drake on 12 April 2001, 04:11:21 UTC, committed by Fred Drake on 12 April 2001, 04:11:21 UTC
1 parent e0197bf
Raw File
Tip revision: 9ad526fac3dc3b0c98f706fb052709754ff9cd5d authored by Fred Drake on 12 April 2001, 04:11:21 UTC
Markup nit: use \envvar to mark environment variables.
Tip revision: 9ad526f
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