Staging
v0.8.1
https://github.com/python/cpython
Revision 1f08c772f5a68bdf8309d6ad1cdddb838fc35feb authored by Larry Hastings on 03 August 2013, 19:58:12 UTC, committed by Larry Hastings on 03 August 2013, 19:58:12 UTC
1 parent 4e0f663
Raw File
Tip revision: 1f08c772f5a68bdf8309d6ad1cdddb838fc35feb authored by Larry Hastings on 03 August 2013, 19:58:12 UTC
Bumped version to 3.4.0a1.
Tip revision: 1f08c77
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