Staging
v0.5.1
https://github.com/python/cpython
Revision 343cb8a768c4e223f7eb19d0b858e5c8af8030c2 authored by Johannes Gijsbers on 30 August 2004, 14:27:11 UTC, committed by Johannes Gijsbers on 30 August 2004, 14:27:11 UTC
1 parent 4c11f60
Raw File
Tip revision: 343cb8a768c4e223f7eb19d0b858e5c8af8030c2 authored by Johannes Gijsbers on 30 August 2004, 14:27:11 UTC
Bug #1014770: apply some rest-foo and fix some docutils errors.
Tip revision: 343cb8a
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