Staging
v0.5.1
https://github.com/python/cpython
Revision d7bbbbc594544318bc6d0f28cb376a11a326c22f authored by Tim Peters on 08 November 2004, 22:30:28 UTC, committed by Tim Peters on 08 November 2004, 22:30:28 UTC
trace_dispatch() result in a more obvious, and more robust way.
1 parent 50c6bdb
Raw File
Tip revision: d7bbbbc594544318bc6d0f28cb376a11a326c22f authored by Tim Peters on 08 November 2004, 22:30:28 UTC
_OutputRedirectingPdb.trace_dispatch(): Return the base class's
Tip revision: d7bbbbc
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