Staging
v0.5.1
https://github.com/python/cpython
Revision 8dcb537fc044bf2538ca6bdef70d701362212b11 authored by Fred Drake on 15 February 2002, 21:00:35 UTC, committed by Fred Drake on 15 February 2002, 21:00:35 UTC
1 parent 558911b
Raw File
Tip revision: 8dcb537fc044bf2538ca6bdef70d701362212b11 authored by Fred Drake on 15 February 2002, 21:00:35 UTC
Add an availability statement for alarm().
Tip revision: 8dcb537
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