Staging
v0.8.1
https://github.com/python/cpython
Revision c49b6efbca22929b9afc25de98c31aae3728cf8a authored by Tarek Ziadé on 06 March 2010, 02:17:28 UTC, committed by Tarek Ziadé on 06 March 2010, 02:17:28 UTC
1 parent 5501e6a
Raw File
Tip revision: c49b6efbca22929b9afc25de98c31aae3728cf8a authored by Tarek Ziadé on 06 March 2010, 02:17:28 UTC
search in the alternative location for VCExpress
Tip revision: c49b6ef
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