Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 4c6b0d5bec587770e0d83b550faae97fe251cc65 authored by Neil Schemenauer on 16 August 2006, 23:38:05 UTC
Fix a bug in the ``compiler`` package that caused invalid code to be
Tip revision: 4c6b0d5
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