Staging
v0.5.1
https://github.com/python/cpython
Revision ca9400f0519261a0d8a282ff1dcaadaddf00fd64 authored by Georg Brandl on 31 July 2010, 09:37:03 UTC, committed by Georg Brandl on 31 July 2010, 09:37:03 UTC
1 parent f71ed9b
Raw File
Tip revision: ca9400f0519261a0d8a282ff1dcaadaddf00fd64 authored by Georg Brandl on 31 July 2010, 09:37:03 UTC
Copy Sun-specific inclusion of <alloca.h> from 2.7 maint to trunk; it seems to not have been merged to py3k.
Tip revision: ca9400f
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