Staging
v0.5.1
https://github.com/python/cpython
Revision a69002ce6cbf32eb63a6c30deea41fe204015db7 authored by Ned Deily on 20 October 2020, 04:18:00 UTC, committed by GitHub on 20 October 2020, 04:18:00 UTC
1 parent aed2648
Raw File
Tip revision: a69002ce6cbf32eb63a6c30deea41fe204015db7 authored by Ned Deily on 20 October 2020, 04:18:00 UTC
Disable macOS CI tests in azure-pipelines (GH-22639)
Tip revision: a69002c
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