Staging
v0.5.1
https://github.com/python/cpython
Revision 4583525835baf8fc7bd49a60725d1e8c49ef92b3 authored by Serhiy Storchaka on 16 February 2019, 06:29:46 UTC, committed by GitHub on 16 February 2019, 06:29:46 UTC
1 parent 62e4481
Raw File
Tip revision: 4583525835baf8fc7bd49a60725d1e8c49ef92b3 authored by Serhiy Storchaka on 16 February 2019, 06:29:46 UTC
bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639)
Tip revision: 4583525
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