Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 5757429130b8bba026e75d358ef0494a6ac0aed8 authored by Benjamin Peterson on 27 November 2010, 14:46:13 UTC
3.1.3 final version bump
Tip revision: 5757429
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