https://github.com/python/cpython
Raw File
Tip revision: a342a49189c16f01e7b95e0bf22ea2bd539222cd authored by Pablo Galindo on 16 March 2022, 11:25:44 UTC
Python 3.10.3
Tip revision: a342a49
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