2002-04-26 16:40:56 -03:00
|
|
|
#ifndef Py_ENUMOBJECT_H
|
|
|
|
#define Py_ENUMOBJECT_H
|
|
|
|
|
|
|
|
/* Enumerate Object */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PyEnum_Type;
|
2003-11-06 10:06:48 -04:00
|
|
|
PyAPI_DATA(PyTypeObject) PyReversed_Type;
|
2002-04-26 16:40:56 -03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* !Py_ENUMOBJECT_H */
|