Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 6672ea942447f409871bd19c928521be13aae1e5 authored by Alexander Belopolsky on 08 November 2010, 18:32:40 UTC
Streamlined code in trace.Ignore and added unit tests.
Tip revision: 6672ea9
dynload_stub.c

/* This module provides the necessary stubs for when dynamic loading is
   not present. */

#include "Python.h"
#include "importdl.h"


const char *_PyImport_DynLoadFiletab[] = {NULL};
back to top