Staging
v0.5.1
https://github.com/python/cpython
Revision c1f44af189583c9db122effe2a21c4f99a683c69 authored by Benjamin Peterson on 20 November 2008, 22:38:20 UTC, committed by Benjamin Peterson on 20 November 2008, 22:38:20 UTC
1 parent 40e8246
Raw File
Tip revision: c1f44af189583c9db122effe2a21c4f99a683c69 authored by Benjamin Peterson on 20 November 2008, 22:38:20 UTC
fix Sphinx table warning
Tip revision: c1f44af
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