Staging
v0.5.1
https://github.com/python/cpython
Revision e5caf1034b9f67a6e6005de1a6dbd8a8ef2193fe authored by Benjamin Peterson on 21 July 2009, 14:16:13 UTC, committed by Benjamin Peterson on 21 July 2009, 14:16:13 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r74140 | benjamin.peterson | 2009-07-21 09:11:27 -0500 (Tue, 21 Jul 2009) | 9 lines

  Merged revisions 74139 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r74139 | benjamin.peterson | 2009-07-21 09:08:40 -0500 (Tue, 21 Jul 2009) | 1 line

    must use _PyThreadState_Current so it isn't checked for NULL #6530
  ........
................
1 parent d98ef1a
Raw File
Tip revision: e5caf1034b9f67a6e6005de1a6dbd8a8ef2193fe authored by Benjamin Peterson on 21 July 2009, 14:16:13 UTC
Merged revisions 74140 via svnmerge from
Tip revision: e5caf10
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