Staging
v0.5.1
https://github.com/python/cpython
Revision d30520075584cdf76ce9ea586fd9b2c60843e5e1 authored by Antoine Pitrou on 15 September 2010, 15:09:40 UTC, committed by Antoine Pitrou on 15 September 2010, 15:09:40 UTC
1 parent cf1dd71
Raw File
Tip revision: d30520075584cdf76ce9ea586fd9b2c60843e5e1 authored by Antoine Pitrou on 15 September 2010, 15:09:40 UTC
Add entries to whatsnew
Tip revision: d305200
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