Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 3398dcb14f6d43bf1619f7c32fe8d888c354e6b2 authored by Ned Deily on 05 December 2017, 08:26:08 UTC
Bump to 3.6.4rc1
Tip revision: 3398dcb
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