Staging
v0.5.1
https://github.com/python/cpython
Revision 1ff50df8bc4048f72bc770372968da2f262cb58e authored by Raymond Hettinger on 30 March 2012, 20:15:48 UTC, committed by Raymond Hettinger on 30 March 2012, 20:15:48 UTC
1 parent 0192ba3
Raw File
Tip revision: 1ff50df8bc4048f72bc770372968da2f262cb58e authored by Raymond Hettinger on 30 March 2012, 20:15:48 UTC
Minor cleanup: add whitespace, add comments, bring function attribute updates together.
Tip revision: 1ff50df
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