Staging
v0.5.1
https://github.com/python/cpython
Revision 7b62416d86dce368470c5d1acbb55295a23d87f8 authored by Miss Islington (bot) on 15 September 2017, 00:34:42 UTC, committed by Terry Jan Reedy on 15 September 2017, 00:34:42 UTC
Enabled by default was a temporary expedient.  The fix is to add a user override to enable.
(cherry picked from commit d384a81f557dab0b142bfcc9850bc68df46496ef)
1 parent 49caab4
Raw File
Tip revision: 7b62416d86dce368470c5d1acbb55295a23d87f8 authored by Miss Islington (bot) on 15 September 2017, 00:34:42 UTC
[3.6] bpo-31480: IDLE - fix tests to pass with zzdummy extension disabled. (GH-3590) (#3591)
Tip revision: 7b62416
bltinmodule.h
#ifndef Py_BLTINMODULE_H
#define Py_BLTINMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyFilter_Type;
PyAPI_DATA(PyTypeObject) PyMap_Type;
PyAPI_DATA(PyTypeObject) PyZip_Type;

#ifdef __cplusplus
}
#endif
#endif /* !Py_BLTINMODULE_H */
back to top