Staging
v0.8.1
Revision e29a10306c146247cd66f9a77c93817d50d93ca0 authored by Raymond Hettinger on 11 June 2008, 13:14:50 UTC, committed by Raymond Hettinger on 11 June 2008, 13:14:50 UTC
1 parent a809c98
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