https://github.com/python/cpython
Raw File
Tip revision: c3ffbbdf3d5645ee07c22649f2028f9dffc762ba authored by Ɓukasz Langa on 28 June 2021, 10:08:34 UTC
Python 3.8.11
Tip revision: c3ffbbd
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