Staging
v0.8.1
Revision 22a56958e72957e2ee6fb84ac5376c4ba642f4ce authored by Yury Selivanov on 25 September 2018, 22:00:15 UTC, committed by GitHub on 25 September 2018, 22:00:15 UTC
1 parent 3cc9557
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