https://github.com/python/cpython
Raw File
Tip revision: b4e48a444ea02921ce4b701fe165e6cfd4cf5845 authored by Pablo Galindo on 06 June 2023, 22:29:37 UTC
Python 3.10.12
Tip revision: b4e48a4
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