Staging
v0.8.1
Revision 8e1dd55e63d18d40e78d941fc9233d2c77bcd3de authored by Fidget-Spinner on 05 October 2020, 04:40:52 UTC, committed by GitHub on 05 October 2020, 04:40:52 UTC
1 parent 40db798
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