Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: b2506101342f26962fec33d5a4d577d54f116145 authored by Larry Hastings on 08 February 2015, 00:04:22 UTC
Fix a copyright notice that still said 2014.
Tip revision: b250610
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