Staging
v0.5.1
https://github.com/python/cpython
Revision 9aa23c5671218dfe62e35945d0ff884f2727d312 authored by Georg Brandl on 06 April 2013, 07:40:02 UTC, committed by Georg Brandl on 06 April 2013, 07:40:02 UTC
1 parent 38546ee
Raw File
Tip revision: 9aa23c5671218dfe62e35945d0ff884f2727d312 authored by Georg Brandl on 06 April 2013, 07:40:02 UTC
Bump to 3.3.1.
Tip revision: 9aa23c5
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