Staging
v0.8.1
https://github.com/python/cpython
Revision d113c967b4810b504d97ec97459dc85bd3a3facd authored by Benjamin Peterson on 18 July 2015, 17:59:13 UTC, committed by Benjamin Peterson on 18 July 2015, 17:59:13 UTC
1 parent 92b3e06
Raw File
Tip revision: d113c967b4810b504d97ec97459dc85bd3a3facd authored by Benjamin Peterson on 18 July 2015, 17:59:13 UTC
improve style of the convert macro (#24655)
Tip revision: d113c96
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