Staging
v0.5.1
https://github.com/python/cpython
Revision b3baf322fbaa2359160b17982ba0d1741f683ab5 authored by Anthony Baxter on 09 March 2005, 11:54:29 UTC, committed by Anthony Baxter on 09 March 2005, 11:54:29 UTC
1 parent 74105f1
Raw File
Tip revision: b3baf322fbaa2359160b17982ba0d1741f683ab5 authored by Anthony Baxter on 09 March 2005, 11:54:29 UTC
pre-release magic
Tip revision: b3baf32
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