Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Include/bltinmodule.h
12 views
1
#ifndef Py_BLTINMODULE_H
2
#define Py_BLTINMODULE_H
3
#ifdef __cplusplus
4
extern "C" {
5
#endif
6
7
PyAPI_DATA(PyTypeObject) PyFilter_Type;
8
PyAPI_DATA(PyTypeObject) PyMap_Type;
9
PyAPI_DATA(PyTypeObject) PyZip_Type;
10
11
#ifdef __cplusplus
12
}
13
#endif
14
#endif /* !Py_BLTINMODULE_H */
15
16