https://github.com/python/cpython
Raw File
Tip revision: b973ab3c3b333976d375c0cd4129cc3377769ea8 authored by Thomas Wouters on 18 September 2023, 19:47:01 UTC
Python 3.12.0rc3
Tip revision: b973ab3
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