Staging
v0.5.1
https://github.com/python/cpython
Revision a608bb228cd4ce83a30f08dc292645ceb6108ed4 authored by Tim Peters on 15 June 2006, 18:06:29 UTC, committed by Tim Peters on 15 June 2006, 18:06:29 UTC
1 parent 84b0f58
Raw File
Tip revision: a608bb228cd4ce83a30f08dc292645ceb6108ed4 authored by Tim Peters on 15 June 2006, 18:06:29 UTC
Whitespace normalization.
Tip revision: a608bb2
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