https://github.com/python/cpython
Raw File
Tip revision: 2ba4b208544114e9c5a0cc7699d16c1a1cbf3253 authored by Pablo Galindo on 10 July 2021, 00:49:40 UTC
Python 3.10.0b4
Tip revision: 2ba4b20
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