Staging
v0.5.1
https://github.com/python/cpython
Revision 2ad5848e5035afc4750147900d11ba647835342b authored by Andrew MacIntyre on 09 March 2005, 22:27:24 UTC, committed by Andrew MacIntyre on 09 March 2005, 22:27:24 UTC
1 parent b3baf32
Raw File
Tip revision: 2ad5848e5035afc4750147900d11ba647835342b authored by Andrew MacIntyre on 09 March 2005, 22:27:24 UTC
backport v1.216: add support for another DB library naming convention \n(FreeBSD ports) - patch #1146231
Tip revision: 2ad5848
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