Staging
v0.5.1
Revision 8493c0cd66cfc181ac1517268a74f077e9998701 authored by Barry Warsaw on 29 October 2013, 14:14:05 UTC, committed by Barry Warsaw on 29 October 2013, 14:14:05 UTC
1 parent c26efbb
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