Staging
v0.5.1
https://github.com/python/cpython
Revision 0d6908b030c21bfb0c093e14837818b5c068512f authored by Senthil Kumaran on 17 June 2010, 16:38:34 UTC, committed by Senthil Kumaran on 17 June 2010, 16:38:34 UTC
1 parent df1cf30
Raw File
Tip revision: 0d6908b030c21bfb0c093e14837818b5c068512f authored by Senthil Kumaran on 17 June 2010, 16:38:34 UTC
Fix Issue4452 - Incorrect docstring of os.setpgrp
Tip revision: 0d6908b
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