Staging
v0.5.1
https://github.com/python/cpython
Revision ccb90e3ccd60bc0156905510074dce84e5b1272c authored by Raymond Hettinger on 02 September 2010, 09:17:31 UTC, committed by Raymond Hettinger on 02 September 2010, 09:17:31 UTC
1 parent 71133ff
Raw File
Tip revision: ccb90e3ccd60bc0156905510074dce84e5b1272c authored by Raymond Hettinger on 02 September 2010, 09:17:31 UTC
Keep contents order the same between versions.
Tip revision: ccb90e3
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