Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 68707af1fb87c8b3d128b71c863cd68195da198f authored by Georg Brandl on 23 February 2014, 07:46:00 UTC
merge
Tip revision: 68707af
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