mirror of
https://github.com/python/cpython.git
synced 2024-11-22 13:28:21 +01:00
cf6f23b0e3
Co-authored-by: Filipe Laíns <filipe.lains@gmail.com>
10 lines
193 B
C
10 lines
193 B
C
|
|
/* This module provides the necessary stubs for when dynamic loading is
|
|
not present. */
|
|
|
|
#include "Python.h"
|
|
#include "pycore_importdl.h"
|
|
|
|
|
|
const char *_PyImport_DynLoadFiletab[] = {NULL};
|