Staging
v0.8.1
https://github.com/python/cpython
Revision 1a04058a642ce9b88925b2b5a2dc1e2f969b3562 authored by Georg Brandl on 25 May 2009, 21:15:01 UTC, committed by Georg Brandl on 25 May 2009, 21:15:01 UTC
1 parent 7b53cb7
Raw File
Tip revision: 1a04058a642ce9b88925b2b5a2dc1e2f969b3562 authored by Georg Brandl on 25 May 2009, 21:15:01 UTC
Manual merge of r72710: use table of flags for dbm.open description.
Tip revision: 1a04058
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