Staging
v0.8.1
Revision 85592c9c80d169e336cfeae6de0c3361f7437166 authored by Benjamin Peterson on 22 November 2015, 02:38:18 UTC, committed by Benjamin Peterson on 22 November 2015, 02:38:18 UTC
1 parent 6a93913
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