Staging
v0.5.1
https://github.com/python/cpython
Revision 8cc67a1b42fb7fa3d257ee61d40008a04f64681d authored by Raymond Hettinger on 13 May 2014, 05:01:46 UTC, committed by Raymond Hettinger on 13 May 2014, 05:01:46 UTC
1 parent 122541b
Raw File
Tip revision: 8cc67a1b42fb7fa3d257ee61d40008a04f64681d authored by Raymond Hettinger on 13 May 2014, 05:01:46 UTC
Issue 21469: Add missing news item
Tip revision: 8cc67a1
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