Staging
v0.5.1
https://github.com/python/cpython
Revision da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e authored by Senthil Kumaran on 05 December 2020, 13:26:24 UTC, committed by GitHub on 05 December 2020, 13:26:24 UTC
1 parent 556d97f
Raw File
Tip revision: da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e authored by Senthil Kumaran on 05 December 2020, 13:26:24 UTC
GH-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed (#23638)
Tip revision: da3d2ab
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