Staging
v0.8.1
https://github.com/python/cpython
Revision 6c1aa6ba30e38fb9708526e27f9158162c37d909 authored by Larry Hastings on 25 June 2016, 21:11:09 UTC, committed by Larry Hastings on 25 June 2016, 21:11:09 UTC
1 parent 66b84c0
Raw File
Tip revision: 6c1aa6ba30e38fb9708526e27f9158162c37d909 authored by Larry Hastings on 25 June 2016, 21:11:09 UTC
Version number bump for 3.5.2 final.
Tip revision: 6c1aa6b
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