Staging
v0.8.1
Revision d2bc389e550464e3f71ec60071880335e8f9b6c6 authored by Steve Dower on 15 April 2015, 22:06:05 UTC, committed by Steve Dower on 15 April 2015, 22:06:05 UTC
1 parent 9abe049
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