Staging
v0.5.1
https://github.com/python/cpython
Revision e92951f8da5747f5fd00c7388d9fd8e811422cb3 authored by Alexander Belopolsky on 28 February 2015, 15:46:00 UTC, committed by Alexander Belopolsky on 28 February 2015, 15:46:00 UTC
2 parent s 184291a + 63d1ff2
Raw File
Tip revision: e92951f8da5747f5fd00c7388d9fd8e811422cb3 authored by Alexander Belopolsky on 28 February 2015, 15:46:00 UTC
merge
Tip revision: e92951f
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