Staging
v0.8.1
Revision 515fabbf969dc3cdda69f760da6751f7ac841170 authored by Raymond Hettinger on 08 December 2010, 11:33:19 UTC, committed by Raymond Hettinger on 08 December 2010, 11:33:19 UTC
1 parent b1ff402
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