Staging
v0.5.1
https://github.com/python/cpython
Revision 58526417ed778df681db17fbabbf0d86fe3c9b67 authored by Florent Xicluna on 06 March 2010, 17:24:36 UTC, committed by Florent Xicluna on 06 March 2010, 17:24:36 UTC
1 parent 1adbee2
Raw File
Tip revision: 58526417ed778df681db17fbabbf0d86fe3c9b67 authored by Florent Xicluna on 06 March 2010, 17:24:36 UTC
Do not print the header lines when running a single test.
Tip revision: 5852641
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