Staging
v0.5.1
https://github.com/python/cpython
Revision fd93666c8aa100869242ea272f526a4de8db98c1 authored by Serhiy Storchaka on 28 March 2018, 20:05:24 UTC, committed by GitHub on 28 March 2018, 20:05:24 UTC
Most of them have been added in 3.7.
(cherry picked from commit bac2d5ba30339298db7d4caa9c8cd31d807cf081)
1 parent 6124d8e
Raw File
Tip revision: fd93666c8aa100869242ea272f526a4de8db98c1 authored by Serhiy Storchaka on 28 March 2018, 20:05:24 UTC
[3.7] Fix duplicating words words. (GH-6296) (GH-6297)
Tip revision: fd93666
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