Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 75c1ca7b6c546ef674eb40bfe47f41e6045dc99b authored by Larry Hastings on 05 September 2020, 09:04:10 UTC
Post-release update for 3.5.10.
Tip revision: 75c1ca7
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