Staging
v0.5.1
https://github.com/python/cpython
Revision e1329105b355b83c75f9bdb7471494d01a7d8705 authored by Raymond Hettinger on 21 November 2016, 20:33:50 UTC, committed by Raymond Hettinger on 21 November 2016, 20:33:50 UTC
1 parent 0537405
Raw File
Tip revision: e1329105b355b83c75f9bdb7471494d01a7d8705 authored by Raymond Hettinger on 21 November 2016, 20:33:50 UTC
Misc readability and organization improvements for the random docs
Tip revision: e132910
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