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