Staging
v0.5.1
https://github.com/python/cpython
Revision a86a274b7224a5069f82c2d2cdd1f499d9c8dc22 authored by pxinwr on 28 November 2020, 22:04:50 UTC, committed by GitHub on 28 November 2020, 22:04:50 UTC


VxWorks has no user space shell provided so it can't support pipes module. Also add shell requirement for running test_pipes.
1 parent 996a1ef
Raw File
Tip revision: a86a274b7224a5069f82c2d2cdd1f499d9c8dc22 authored by pxinwr on 28 November 2020, 22:04:50 UTC
bpo-31904: add shell requirement for test_pipes (GH-23489)
Tip revision: a86a274
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