Staging
v0.8.1
Revision 1f5569824f52e0e03d6ae6020233c0e025ce5008 authored by Miss Islington (bot) on 10 June 2018, 00:12:24 UTC, committed by GitHub on 10 June 2018, 00:12:24 UTC
(cherry picked from commit 0aa17ee6a76df0946d42e7657a501f1862065a22)

Co-authored-by: Ammar Askar <ammar_askar@hotmail.com>
1 parent 07aea16
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