https://github.com/python/cpython
Raw File
Tip revision: 40913a56eda152e72c4b80aee8e86542c3019084 authored by Thomas Wouters on 05 September 2023, 21:55:58 UTC
Python 3.12.0rc2
Tip revision: 40913a5
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