Staging
v0.5.1
https://github.com/python/cpython
Revision e0f1581babe682552d7eadc4e54636b1c2775f0b authored by Raymond Hettinger on 05 July 2004, 05:36:39 UTC, committed by Raymond Hettinger on 05 July 2004, 05:36:39 UTC
* Make capitals default part of DefaultContext
1 parent 71432f1
Raw File
Tip revision: e0f1581babe682552d7eadc4e54636b1c2775f0b authored by Raymond Hettinger on 05 July 2004, 05:36:39 UTC
* Fixup docstrings
Tip revision: e0f1581
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