Staging
v0.5.1
https://github.com/python/cpython
Revision 3f885b543256df8acabc39fa9c28f45dfa6e4979 authored by Vinay Sajip on 22 March 2013, 15:19:54 UTC, committed by Vinay Sajip on 22 March 2013, 15:19:54 UTC
1 parent d5537d0
Raw File
Tip revision: 3f885b543256df8acabc39fa9c28f45dfa6e4979 authored by Vinay Sajip on 22 March 2013, 15:19:54 UTC
Issue #17508: Handled out-of-order handler configuration correctly.
Tip revision: 3f885b5
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