Staging
v0.5.1
https://github.com/python/cpython
Revision 3f3dc89a156c2ab0ea340851dd3d4fd510865163 authored by Terry Jan Reedy on 10 August 2016, 19:15:25 UTC, committed by Terry Jan Reedy on 10 August 2016, 19:15:25 UTC
because test_idle failed while running with test -w (and no -jn).
Prevent a non-fatal warning from test_config_key.
1 parent 40a46ad
Raw File
Tip revision: 3f3dc89a156c2ab0ea340851dd3d4fd510865163 authored by Terry Jan Reedy on 10 August 2016, 19:15:25 UTC
Issue #27714: text_textview now passes when re-run in the same process
Tip revision: 3f3dc89
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