Staging
v0.5.1
https://github.com/python/cpython
Revision 5caf39d82745b4fdd3158a938497579e3c45f9c2 authored by Larry Hastings on 20 December 2015, 03:28:52 UTC, committed by Larry Hastings on 20 December 2015, 03:28:52 UTC
1 parent 999d0f9
Raw File
Tip revision: 5caf39d82745b4fdd3158a938497579e3c45f9c2 authored by Larry Hastings on 20 December 2015, 03:28:52 UTC
Rebuild pydoc topics for Python 3.4.4 final.
Tip revision: 5caf39d
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