Staging
v0.5.1
https://github.com/python/cpython
Revision d68e0a8a165761604e820c8cb4f20abc735e717f authored by Carl on 10 February 2020, 21:15:34 UTC, committed by GitHub on 10 February 2020, 21:15:34 UTC
documentation for default locale directory Doc/library/gettext.rst changed to match gettext implementation line 63.
1 parent 3c5dec6
Raw File
Tip revision: d68e0a8a165761604e820c8cb4f20abc735e717f authored by Carl on 10 February 2020, 21:15:34 UTC
Issue3950: Fix docs for default locale used by gettext to match implementation (#18435)
Tip revision: d68e0a8
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