Staging
v0.8.1
Revision d08aa47f930ebc8ca25bb1dc2c128d696f2c40c4 authored by Larry Hastings on 18 May 2014, 04:45:01 UTC, committed by Larry Hastings on 18 May 2014, 04:45:01 UTC
1 parent 3a260d2
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