Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: cfba5f8c2e21916cdcc24630461e673c1cb4d883 authored by Neal Norwitz on 25 April 2006, 05:05:03 UTC
Restore Walters name
Tip revision: cfba5f8
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