Staging
v0.8.1
Revision 91b79afa3a0d02ec77094c632424c7e9049959cb authored by Raymond Hettinger on 25 June 2011, 09:50:00 UTC, committed by Raymond Hettinger on 25 June 2011, 09:50:00 UTC
2 parent s f00bfa2 + 4d5208d
Raw File
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