Staging
v0.5.1
https://github.com/python/cpython
Revision ab0ef20663ee64667cc979f6810e60914d26d149 authored by Georg Brandl on 01 May 2012, 07:35:18 UTC, committed by Georg Brandl on 01 May 2012, 07:35:18 UTC
1 parent ebb2964
Raw File
Tip revision: ab0ef20663ee64667cc979f6810e60914d26d149 authored by Georg Brandl on 01 May 2012, 07:35:18 UTC
Bump to 3.3.0a3.
Tip revision: ab0ef20
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