Staging
v0.8.1
Revision 9216dffbc8a2aa62789f81f51f64bc1ec7bf6883 authored by Miss Islington (bot) on 04 April 2018, 05:01:46 UTC, committed by GitHub on 04 April 2018, 05:01:46 UTC
(cherry picked from commit dfbbbf16f9aab82330c634913441b5ac73267d9c)

Co-authored-by: hui shang <shangdahao@gmail.com>
1 parent 74735e2
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