Staging
v0.5.1
https://github.com/python/cpython
Revision b3f0ce4d1ea6a48774af22e20b8f748c19f87462 authored by Georg Brandl on 13 August 2011, 09:34:58 UTC, committed by Georg Brandl on 13 August 2011, 09:34:58 UTC
1 parent 1db1d14
Raw File
Tip revision: b3f0ce4d1ea6a48774af22e20b8f748c19f87462 authored by Georg Brandl on 13 August 2011, 09:34:58 UTC
Bump version to 3.2.2rc1.
Tip revision: b3f0ce4
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