Staging
v0.8.1
https://github.com/python/cpython
Revision a93ee47422ba80ffc75465255df278e174ee803d authored by Phillip J. Eby on 21 April 2006, 21:53:37 UTC, committed by Phillip J. Eby on 21 April 2006, 21:53:37 UTC
1 parent 21fbd57
Raw File
Tip revision: a93ee47422ba80ffc75465255df278e174ee803d authored by Phillip J. Eby on 21 April 2006, 21:53:37 UTC
Guido wrote contextlib, not me, but thanks anyway. ;)
Tip revision: a93ee47
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