Staging
v0.5.1
https://github.com/python/cpython
Revision f4c865eda8f57dedaeaa16530ab6f1024bfb94de authored by Miss Islington (bot) on 02 September 2018, 02:13:34 UTC, committed by GitHub on 02 September 2018, 02:13:34 UTC

... by removing a superfluous "either".

Reported by Никита Люшненко on docs@.
(cherry picked from commit 98b976a2f82ba5f50cf6846338f644ca6c64f47d)

Co-authored-by: Zachary Ware <zachary.ware@gmail.com>
1 parent 4c532da
Raw File
Tip revision: f4c865eda8f57dedaeaa16530ab6f1024bfb94de authored by Miss Islington (bot) on 02 September 2018, 02:13:34 UTC
Fix struct sequence glossary entry grammar (GH-9030)
Tip revision: f4c865e
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