Staging
v0.5.1
https://github.com/python/cpython
Revision cf67b2a8916df3a696050b3ba36ac8049c9961f9 authored by Nick Coghlan on 28 July 2013, 12:25:25 UTC, committed by Nick Coghlan on 28 July 2013, 12:25:25 UTC
2 parent s b8de598 + 5517596
Raw File
Tip revision: cf67b2a8916df3a696050b3ba36ac8049c9961f9 authored by Nick Coghlan on 28 July 2013, 12:25:25 UTC
Merge #15415 from 3.3
Tip revision: cf67b2a
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