Staging
v0.8.1
Revision 4eba67783eb2084b2dad875ed1cbffdaf8a9202e authored by Mathieu Dupuy on 17 May 2020, 21:24:59 UTC, committed by GitHub on 17 May 2020, 21:24:59 UTC
1 parent 62ecd8a
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