Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 1015e38be4a52488a506ccb311ab7b23e46f9fa9 authored by Ned Deily on 12 June 2018, 04:24:03 UTC
3.6.6rc1
Tip revision: 1015e38
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