Staging
v0.5.1
Revision a7c33e5168a6dbc1f97bf3287cfd86bebf80f4ed authored by Victor Stinner on 29 June 2011, 11:00:54 UTC, committed by Victor Stinner on 29 June 2011, 11:00:54 UTC
the output and displays it on failure instead. regrtest -v doesn't print the
error twice anymore if there is only one error.
1 parent eb5af22
Raw File
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