Staging
v0.5.1
https://github.com/python/cpython
Revision b147aae26fba0fec0406ab8004797238d53a64a3 authored by Martin v. Löwis on 30 March 2013, 12:06:57 UTC, committed by Martin v. Löwis on 30 March 2013, 12:06:57 UTC
1 parent 2323cb7
Raw File
Tip revision: b147aae26fba0fec0406ab8004797238d53a64a3 authored by Martin v. Löwis on 30 March 2013, 12:06:57 UTC
Add 3.2.4 UUIDs
Tip revision: b147aae
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