Staging
v0.5.1
https://github.com/python/cpython
Revision b20f905f6d52d6839ca2e5b3fd069cf5ccffc429 authored by Serhiy Storchaka on 25 March 2015, 14:41:15 UTC, committed by Serhiy Storchaka on 25 March 2015, 14:41:15 UTC
2 parent s 764fc9b + 1b87ae0
Raw File
Tip revision: b20f905f6d52d6839ca2e5b3fd069cf5ccffc429 authored by Serhiy Storchaka on 25 March 2015, 14:41:15 UTC
Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.
Tip revision: b20f905
importdl.h
#ifndef Py_IMPORTDL_H
#define Py_IMPORTDL_H

#ifdef __cplusplus
extern "C" {
#endif


extern const char *_PyImport_DynLoadFiletab[];

extern PyObject *_PyImport_LoadDynamicModule(PyObject *name, PyObject *pathname,
                                             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