Staging
v0.8.1
Revision 48e14d3fdac9902429dc5312252073389a538a17 authored by Martin v. Löwis on 09 May 2011, 05:37:45 UTC, committed by Martin v. Löwis on 09 May 2011, 05:37:45 UTC
Patch by Arfrever Frehtes Taifersar Arahesis.
1 parent 19f7ca2
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