Staging
v0.5.1
https://github.com/python/cpython
Revision 5776663675b48f011d428a5874cc3c79d1deb59e authored by Victor Stinner on 29 October 2020, 14:16:23 UTC, committed by GitHub on 29 October 2020, 14:16:23 UTC
IRIX code was slowy removed in Python 2.4 (--with-sgi-dl), Python 3.3
(Irix threads), and Python 3.7.
1 parent 3505261
Raw File
Tip revision: 5776663675b48f011d428a5874cc3c79d1deb59e authored by Victor Stinner on 29 October 2020, 14:16:23 UTC
bpo-42029: Remove IRIX code (GH-23023)
Tip revision: 5776663
importdl.h
#ifndef Py_IMPORTDL_H
#define Py_IMPORTDL_H

#ifdef __cplusplus
extern "C" {
#endif


extern const char *_PyImport_DynLoadFiletab[];

extern PyObject *_PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *);

/* Max length of module suffix searched for -- accommodates "module.slb" */
#define MAXSUFFIXSIZE 12

#ifdef MS_WINDOWS
#include <windows.h>
typedef FARPROC dl_funcptr;
#else
typedef void (*dl_funcptr)(void);
#endif


#ifdef __cplusplus
}
#endif
#endif /* !Py_IMPORTDL_H */
back to top