Staging
v0.5.1
https://github.com/python/cpython
Revision 5851218e4228d36306b5a46387fc27daf48cf840 authored by R David Murray on 02 January 2014, 18:38:02 UTC, committed by R David Murray on 02 January 2014, 18:38:02 UTC
1 parent 8a2bfc1
Raw File
Tip revision: 5851218e4228d36306b5a46387fc27daf48cf840 authored by R David Murray on 02 January 2014, 18:38:02 UTC
#17282: Document unittest.main defaultTest argument.
Tip revision: 5851218
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