Staging
v0.5.1
https://github.com/python/cpython
Revision a03453d944bfdc47c998ab6bffc5a0d3562247c0 authored by Tim Peters on 10 January 2002, 22:49:58 UTC, committed by Tim Peters on 10 January 2002, 22:49:58 UTC
2002!).  Does anyone know of a copyright blurb I missed?
1 parent bd5bcf6
Raw File
Tip revision: a03453d944bfdc47c998ab6bffc5a0d3562247c0 authored by Tim Peters on 10 January 2002, 22:49:58 UTC
Attempted to update all the copyright notices (we're releasing this in
Tip revision: a03453d
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