Staging
v0.5.1
https://github.com/python/cpython
Revision a20c265abaa6e0c40ab955f74dab7b2f43cd2fbc authored by Fred Drake on 06 September 2001, 18:59:43 UTC, committed by Fred Drake on 06 September 2001, 18:59:43 UTC
1 parent ba5c41d
Raw File
Tip revision: a20c265abaa6e0c40ab955f74dab7b2f43cd2fbc authored by Fred Drake on 06 September 2001, 18:59:43 UTC
Added an additional link to NIST information on secure hashing.
Tip revision: a20c265
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