Staging
v0.8.1
Revision 00b381b9a7b6b15350d1dcf7c688bf808cbf0ebb authored by csabella on 30 May 2017, 20:27:39 UTC, committed by Mariatta on 30 May 2017, 20:27:39 UTC
Original patch by Dennis MÃ¥rtensson.
(cherry picked from commit 763557eac06ba60d7c5133e4f80df8870d8f917e)
1 parent 03c7600
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