Staging
v0.8.1
Revision f36ba12809d5db1b76464d8f1f04dad8d685ec78 authored by larryhastings on 28 January 2018, 19:13:09 UTC, committed by GitHub on 28 January 2018, 19:13:09 UTC
Definition order of kwonly params is now guaranteed preserved.
1 parent bec2372
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