Staging
v0.5.1
https://github.com/python/cpython
Revision d30520075584cdf76ce9ea586fd9b2c60843e5e1 authored by Antoine Pitrou on 15 September 2010, 15:09:40 UTC, committed by Antoine Pitrou on 15 September 2010, 15:09:40 UTC
1 parent cf1dd71
Raw File
Tip revision: d30520075584cdf76ce9ea586fd9b2c60843e5e1 authored by Antoine Pitrou on 15 September 2010, 15:09:40 UTC
Add entries to whatsnew
Tip revision: d305200
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