Staging
v0.5.1
https://github.com/python/cpython
Revision 5d86bdb3aebb14228d3c2e3f921bda34cf1c886c authored by Phillip J. Eby on 10 July 2006, 19:03:29 UTC, committed by Phillip J. Eby on 10 July 2006, 19:03:29 UTC
1 parent b9cb84f
Raw File
Tip revision: 5d86bdb3aebb14228d3c2e3f921bda34cf1c886c authored by Phillip J. Eby on 10 July 2006, 19:03:29 UTC
Fix SF#1516184 and add a test to prevent regression.
Tip revision: 5d86bdb
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