Staging
v0.5.1
https://github.com/python/cpython
Revision c9dffa5c4d21beb1d74734d3988db3012ef2a3f9 authored by Tarek Ziadé on 03 June 2009, 11:22:48 UTC, committed by Tarek Ziadé on 03 June 2009, 11:22:48 UTC
........
  r73174 | tarek.ziade | 2009-06-03 13:20:44 +0200 (Wed, 03 Jun 2009) | 1 line

  assertion message was dropped
........
1 parent 6840721
Raw File
Tip revision: c9dffa5c4d21beb1d74734d3988db3012ef2a3f9 authored by Tarek Ziadé on 03 June 2009, 11:22:48 UTC
Blocked revisions 73174 via svnmerge
Tip revision: c9dffa5
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