Staging
v0.5.1
https://github.com/python/cpython
Revision 5aefee6f989821c5dc36d10a9cfd083d7aa737a5 authored by Miss Islington (bot) on 27 January 2020, 22:31:33 UTC, committed by GitHub on 27 January 2020, 22:31:33 UTC

Expose dialog buttons to test code and complete their test coverage.
Complete test coverage for highlights and keys tabs.

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
(cherry picked from commit dd023ad1619b6f1ab313986e8953eea32c18f50c)

Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
1 parent 414ab5d
Raw File
Tip revision: 5aefee6f989821c5dc36d10a9cfd083d7aa737a5 authored by Miss Islington (bot) on 27 January 2020, 22:31:33 UTC
bpo-30780: Add IDLE configdialog tests (GH-3592)
Tip revision: 5aefee6
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