Staging
v0.8.1
https://github.com/python/cpython
Revision 206853035e2c14bdba27cd1cdac0cbb21d3c6f69 authored by Larry Hastings on 08 February 2015, 00:04:29 UTC, committed by Larry Hastings on 08 February 2015, 00:04:29 UTC
1 parent b06f142
Raw File
Tip revision: 206853035e2c14bdba27cd1cdac0cbb21d3c6f69 authored by Larry Hastings on 08 February 2015, 00:04:29 UTC
Fix a copyright notice that still said 2014.
Tip revision: 2068530
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