Staging
v0.8.1
Revision 7b5011b4a3a8ad8a8c816b9472afd60628815317 authored by Eric Smith on 01 February 2011, 21:31:22 UTC, committed by Eric Smith on 01 February 2011, 21:31:22 UTC
1 parent 0ea622a
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