Staging
v0.5.1
https://github.com/python/cpython
Revision 4e985673bf29677d243d68cf21884322df3319da authored by Serhiy Storchaka on 13 October 2013, 18:19:00 UTC, committed by Serhiy Storchaka on 13 October 2013, 18:19:00 UTC
1 parent dab8354
Raw File
Tip revision: 4e985673bf29677d243d68cf21884322df3319da authored by Serhiy Storchaka on 13 October 2013, 18:19:00 UTC
Issue #19197: Improved cross-references in the shlex module documentation.
Tip revision: 4e98567
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