Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 7b3ab5921fa25ed8b97b6296f97c5c78aacf5447 authored by Ɓukasz Langa on 24 February 2020, 21:36:25 UTC
Python 3.8.2
Tip revision: 7b3ab59
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