Staging
v0.5.1
https://github.com/python/cpython
Revision cea2725736880f542acaa56bfd11db86582b0ce6 authored by Georg Brandl on 29 October 2014, 09:57:01 UTC, committed by Georg Brandl on 29 October 2014, 09:57:01 UTC
1 parent 97ae466
Raw File
Tip revision: cea2725736880f542acaa56bfd11db86582b0ce6 authored by Georg Brandl on 29 October 2014, 09:57:01 UTC
linkcheck: ignore issue URLs and PEP URLs (the latter until the PEPs are on www.python.org again).
Tip revision: cea2725
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