Staging
v0.5.1
https://github.com/python/cpython
Revision 055a9e0bc8eb28fd64158ade11019b712116aeae authored by Larry Hastings on 06 September 2015, 03:53:04 UTC, committed by Larry Hastings on 06 September 2015, 03:53:04 UTC
2 parent s 6995342 + 9d3c61c
Raw File
Tip revision: 055a9e0bc8eb28fd64158ade11019b712116aeae authored by Larry Hastings on 06 September 2015, 03:53:04 UTC
Merged in ncoghlan/cpython350 (pull request #17)
Tip revision: 055a9e0
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