https://github.com/python/cpython
Raw File
Tip revision: aad5f6a89125ad4529ab6ed5add693064351df1a authored by Pablo Galindo on 07 February 2023, 12:03:42 UTC
Python 3.10.10
Tip revision: aad5f6a
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