Staging
v0.5.1
https://github.com/python/cpython
Revision 2a6ce8adc5076296c82865bc1d98b6605dc3164c authored by Larry Hastings on 12 October 2019, 11:50:04 UTC, committed by Larry Hastings on 12 October 2019, 11:50:04 UTC
1 parent ac4f751
Raw File
Tip revision: 2a6ce8adc5076296c82865bc1d98b6605dc3164c authored by Larry Hastings on 12 October 2019, 11:50:04 UTC
Post-release update for 3.5.8rc2.
Tip revision: 2a6ce8a
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