Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Python/dynload_stub.c
12 views
1
2
/* This module provides the necessary stubs for when dynamic loading is
3
not present. */
4
5
#include "Python.h"
6
#include "importdl.h"
7
8
9
const char *_PyImport_DynLoadFiletab[] = {NULL};
10
11