Staging
v0.5.1
https://github.com/python/cpython
Revision 85b30986f9a95ed93ae9bf87952b4df86e34d121 authored by Benjamin Peterson on 04 April 2009, 15:32:08 UTC, committed by Benjamin Peterson on 04 April 2009, 15:32:08 UTC
1 parent 042f133
Raw File
Tip revision: 85b30986f9a95ed93ae9bf87952b4df86e34d121 authored by Benjamin Peterson on 04 April 2009, 15:32:08 UTC
try to fix svnmerge-blocked property
Tip revision: 85b3098
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