Staging
v0.5.1
https://github.com/python/cpython
Revision 2d3814e1ebb31073b3d43435923fd1270fc458ca authored by Anthony Baxter on 11 October 2006, 04:32:52 UTC, committed by Anthony Baxter on 11 October 2006, 04:32:52 UTC
1 parent 84332f9
Raw File
Tip revision: 2d3814e1ebb31073b3d43435923fd1270fc458ca authored by Anthony Baxter on 11 October 2006, 04:32:52 UTC
Tagging for release of Python 2.4.4c1
Tip revision: 2d3814e
enumobject.h
#ifndef Py_ENUMOBJECT_H
#define Py_ENUMOBJECT_H

/* Enumerate Object */

#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyEnum_Type;
PyAPI_DATA(PyTypeObject) PyReversed_Type;

#ifdef __cplusplus
}
#endif

#endif /* !Py_ENUMOBJECT_H */
back to top