Staging
v0.5.1
https://github.com/python/cpython
Revision 410b730c205133315c604350f4bdc2345588b397 authored by Miss Islington (bot) on 01 June 2020, 16:07:32 UTC, committed by GitHub on 01 June 2020, 16:07:32 UTC
(cherry picked from commit db64f12e4deda2abbafb6d2bd5c06762fca991ff)

Co-authored-by: Mark Shannon <mark@hotpy.org>
1 parent a169961
Raw File
Tip revision: 410b730c205133315c604350f4bdc2345588b397 authored by Miss Islington (bot) on 01 June 2020, 16:07:32 UTC
Make sure that keyword arguments are merged into the arguments dictionary when dict unpacking and keyword arguments are interleaved. (GH-20553) (GH-20569)
Tip revision: 410b730
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