Staging
v0.8.1
https://github.com/python/cpython
Revision ff5433602ae6fba401eb8d4bcbf2101710e02aac authored by Tarek Ziadé on 11 June 2009, 09:25:41 UTC, committed by Tarek Ziadé on 11 June 2009, 09:25:41 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73348 | tarek.ziade | 2009-06-11 11:13:36 +0200 (Thu, 11 Jun 2009) | 1 line

  #6263 fixed syntax error in distutils.cygwinccompiler
........
1 parent a8b5a14
Raw File
Tip revision: ff5433602ae6fba401eb8d4bcbf2101710e02aac authored by Tarek Ziadé on 11 June 2009, 09:25:41 UTC
Merged revisions 73348 via svnmerge from
Tip revision: ff54336
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