Staging
v0.5.1
https://github.com/python/cpython
Revision bd371a4cbb0cdf4fb2b726134747c3ea062c5321 authored by Barry Warsaw on 17 March 2012, 22:19:15 UTC, committed by Barry Warsaw on 17 March 2012, 22:19:15 UTC
1 parent 2875b5b
Raw File
Tip revision: bd371a4cbb0cdf4fb2b726134747c3ea062c5321 authored by Barry Warsaw on 17 March 2012, 22:19:15 UTC
Bump to 2.6.8rc2
Tip revision: bd371a4
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