https://github.com/python/cpython
Raw File
Tip revision: 2e49bd06c5ffab7d154042da4b5bcd5ae6e4220b authored by Pablo Galindo on 05 April 2022, 19:52:24 UTC
Python 3.11.0a7
Tip revision: 2e49bd0
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