Staging
v0.8.1
https://github.com/python/cpython
Revision 4544e78ec4558b75bf95e5b7dfc1b5bbb07ae5f0 authored by alclarks on 17 November 2019, 22:00:43 UTC, committed by Raymond Hettinger on 17 November 2019, 22:00:43 UTC
1 parent 2bc3434
Raw File
Tip revision: 4544e78ec4558b75bf95e5b7dfc1b5bbb07ae5f0 authored by alclarks on 17 November 2019, 22:00:43 UTC
bpo-25866: Minor cleanups to "sequence" in docs (GH-17177)
Tip revision: 4544e78
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