Staging
v0.5.1
https://github.com/python/cpython
Revision 8ad8039636e7974c8a1dead451323e24c0b2c2c5 authored by Éric Araujo on 21 October 2010, 18:46:36 UTC, committed by Éric Araujo on 21 October 2010, 18:46:36 UTC
1 parent 4d3d08f
Raw File
Tip revision: 8ad8039636e7974c8a1dead451323e24c0b2c2c5 authored by Éric Araujo on 21 October 2010, 18:46:36 UTC
Backport fix for #10126
Tip revision: 8ad8039
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