Staging
v0.5.1
https://github.com/python/cpython
Revision ae55dc0da47e48f8dc8e986f8038a3a900a81f00 authored by Georg Brandl on 06 September 2008, 17:43:49 UTC, committed by Georg Brandl on 06 September 2008, 17:43:49 UTC
1 parent 1aeaadd
Raw File
Tip revision: ae55dc0da47e48f8dc8e986f8038a3a900a81f00 authored by Georg Brandl on 06 September 2008, 17:43:49 UTC
#3794: remove __div__ and __rdiv__ traces.
Tip revision: ae55dc0
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