https://github.com/python/cpython
Raw File
Tip revision: 024d8058b0cb2b13dfd65c8e3804a6b194a151ba authored by Ɓukasz Langa on 19 February 2021, 10:28:41 UTC
Python 3.8.8
Tip revision: 024d805
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