Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 4ab4ec258c01aa28d4b2019f2d5d2489e3a1daf1 authored by Georg Brandl on 25 August 2012, 10:16:37 UTC
Bump to 3.3.0rc1.
Tip revision: 4ab4ec2
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