Staging
v0.8.1
https://github.com/python/cpython
Revision f3e40fac10fa240b98a709191c6648fdd585b55f authored by Yury Selivanov on 21 May 2015, 15:50:30 UTC, committed by Yury Selivanov on 21 May 2015, 15:50:30 UTC
1 parent 548de2b
Raw File
Tip revision: f3e40fac10fa240b98a709191c6648fdd585b55f authored by Yury Selivanov on 21 May 2015, 15:50:30 UTC
Issue 24180: Documentation for PEP 492 changes.
Tip revision: f3e40fa
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